Use true/false as default bool string representation
authorMichael Andres <ma@suse.de>
Tue, 11 Feb 2014 12:53:14 +0000 (13:53 +0100)
committerMichael Andres <ma@suse.de>
Tue, 11 Feb 2014 12:53:14 +0000 (13:53 +0100)
zypp/base/String.h

index 6e96466..e0dcb37 100644 (file)
@@ -169,7 +169,7 @@ namespace zypp
 
     template<>
         inline std::string asString( const bool &t )
-        { return t ? "+" : "-"; }
+        { return t ? "true" : "false"; }
 
     ///////////////////////////////////////////////////////////////////
     /** Printf style construction of std::string. */