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:
@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user