mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
put the wstring stoi too in the ignore-on-vc2010 #if
This commit is contained in:
parent
ea3c653a8b
commit
889de3e93a
@ -809,6 +809,11 @@ inline s32 stoi(std::string s)
|
|||||||
return atoi(s.c_str());
|
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)
|
inline float stof(std::string s)
|
||||||
{
|
{
|
||||||
float f;
|
float f;
|
||||||
@ -819,11 +824,6 @@ inline float stof(std::string s)
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
inline s32 stoi(std::wstring s)
|
|
||||||
{
|
|
||||||
return atoi(wide_to_narrow(s).c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
inline std::string itos(s32 i)
|
inline std::string itos(s32 i)
|
||||||
{
|
{
|
||||||
std::ostringstream o;
|
std::ostringstream o;
|
||||||
|
Loading…
Reference in New Issue
Block a user