Fixed: compile on linux

This commit is contained in:
vl 2010-09-21 09:25:53 +02:00
parent 44d9dbc390
commit 8d9d58fed9

View file

@ -205,8 +205,10 @@ inline std::string toString(const long unsigned int &val)
#if (SIZEOF_SIZE_T) == 8
inline std::string toString(const size_t &val) { return toString("%"NL_I64"u", val); }
#else
#ifdef NL_OS_MAC
inline std::string toString(const size_t &val) { return toString("%u", val); }
#endif
#endif
inline std::string toString(const float &val) { return toString("%f", val); }
inline std::string toString(const double &val) { return toString("%lf", val); }
inline std::string toString(const bool &val) { return toString("%u", val?1:0); }