add space to description of default value

This commit is contained in:
Hideyuki Tanaka 2009-10-23 19:11:58 +09:00
parent 5e6f38c548
commit bdd4426815

View File

@ -656,7 +656,7 @@ private:
std::string full_description(const std::string &desc){
return
desc+" ("+detail::readable_typename<T>()+
(need?"":"[="+detail::lexical_cast<std::string>(def)+"]")
(need?"":" [="+detail::lexical_cast<std::string>(def)+"]")
+")";
}