From f45ce674bc6d5b59e7f0363efd8a860513bb0899 Mon Sep 17 00:00:00 2001 From: Michael Andres Date: Tue, 11 Feb 2014 13:53:14 +0100 Subject: [PATCH] Use true/false as default bool string representation --- zypp/base/String.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zypp/base/String.h b/zypp/base/String.h index 6e96466..e0dcb37 100644 --- a/zypp/base/String.h +++ b/zypp/base/String.h @@ -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. */ -- 2.7.4