Forgot to take out the log statement.

This commit is contained in:
gl3nn 2014-01-18 01:23:48 +01:00
parent 32ec3c0f07
commit ca8d9560b7

View File

@ -74,15 +74,12 @@ namespace StringUtils
} // toString template
// ------------------------------------------------------------------------
/** Specialisiation for bools to return 'true' or 'false'/
*/
/** Specialisiation for bools to return 'true' or 'false'*/
inline std::string toString(bool &b)
{
Log::info("string_utils","toString(bool) called");
return (b ? "true" : "false");
} // toString(bool)
// ------------------------------------------------------------------------
template <class T>
irr::core::stringw toWString (const T& any)