From cb6014eecc939eab76cbf0f5601bc00b69e3dfcf Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Tue, 20 May 2014 17:10:38 -0400 Subject: [PATCH] Remove to_string overload on size_t for win32, it now conflicts with the uint32_t case --- include/fc/string.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/fc/string.hpp b/include/fc/string.hpp index b262c90..b0303ef 100644 --- a/include/fc/string.hpp +++ b/include/fc/string.hpp @@ -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 ostring;