Fixed compiler warning.
This commit is contained in:
parent
0adddd4401
commit
949877b826
@ -75,7 +75,8 @@ namespace StringUtils
|
||||
// ------------------------------------------------------------------------
|
||||
/** Specialisiation for bools to return 'true' or 'false'/
|
||||
*/
|
||||
static std::string toString(bool b)
|
||||
template<bool>
|
||||
std::string toString(bool &b)
|
||||
{
|
||||
return (b ? "true" : "false");
|
||||
} // toString(bool)
|
||||
|
Loading…
Reference in New Issue
Block a user