Forgot to take out the log statement.
This commit is contained in:
parent
32ec3c0f07
commit
ca8d9560b7
@ -74,15 +74,12 @@ namespace StringUtils
|
|||||||
} // toString template
|
} // toString template
|
||||||
|
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
/** Specialisiation for bools to return 'true' or 'false'/
|
/** Specialisiation for bools to return 'true' or 'false'*/
|
||||||
*/
|
|
||||||
inline std::string toString(bool &b)
|
inline std::string toString(bool &b)
|
||||||
{
|
{
|
||||||
Log::info("string_utils","toString(bool) called");
|
|
||||||
return (b ? "true" : "false");
|
return (b ? "true" : "false");
|
||||||
} // toString(bool)
|
} // toString(bool)
|
||||||
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
template <class T>
|
template <class T>
|
||||||
irr::core::stringw toWString (const T& any)
|
irr::core::stringw toWString (const T& any)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user