From: Perttu Ahola Date: Thu, 19 May 2011 05:16:48 +0000 (+0300) Subject: put the wstring stoi too in the ignore-on-vc2010 #if X-Git-Tag: 0.2.20110731_3~198 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=889de3e93aadb5c79adb58953513cab3e6cd3a3d;p=oweals%2Fminetest.git put the wstring stoi too in the ignore-on-vc2010 #if --- diff --git a/src/utility.h b/src/utility.h index 28732a099..84838c0c7 100644 --- a/src/utility.h +++ b/src/utility.h @@ -809,6 +809,11 @@ inline s32 stoi(std::string s) return atoi(s.c_str()); } +inline s32 stoi(std::wstring s) +{ + return atoi(wide_to_narrow(s).c_str()); +} + inline float stof(std::string s) { float f; @@ -819,11 +824,6 @@ inline float stof(std::string s) #endif -inline s32 stoi(std::wstring s) -{ - return atoi(wide_to_narrow(s).c_str()); -} - inline std::string itos(s32 i) { std::ostringstream o;