1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

Fix a VC++2013 compile error

This commit is contained in:
2013-11-02 01:50:10 -07:00
parent f4f24cb6c2
commit c69d546c69

View File

@ -496,8 +496,8 @@ double plString::ToDouble() const
return strtod(c_str(), nullptr); return strtod(c_str(), nullptr);
} }
// Microsoft doesn't provide this for us // Microsoft doesn't provide this for us until VC++2013
#ifdef _MSC_VER #if defined(_MSC_VER) && _MSC_VER < 1800
#define va_copy(dest, src) (dest) = (src) #define va_copy(dest, src) (dest) = (src)
#endif #endif