Remove to_string overload on size_t for win32, it now conflicts with the uint32_t case
This commit is contained in:
parent
d2e2311d72
commit
cb6014eecc
1 changed files with 0 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue