Remove to_string overload on size_t for win32, it now conflicts with the uint32_t case

This commit is contained in:
Eric Frias 2014-05-20 17:10:38 -04:00
parent d2e2311d72
commit cb6014eecc

View file

@ -20,8 +20,6 @@ namespace fc
inline fc::string to_string( uint32_t v ){ return to_string( uint64_t(v) ); }
#ifdef __APPLE__
inline fc::string to_string( size_t s) { return to_string(uint64_t(s)); }
#elif defined( WIN32 )
inline fc::string to_string( size_t s ) { return to_string(uint64_t(s)); }
#endif
typedef fc::optional<fc::string> ostring;