Commit 6b32ae18 by baldurk

Compile fix - if _MSC_VER is undefined, _MSC_VER < 1700 is true!

parent a8018b8e
...@@ -63,7 +63,7 @@ std::string to_string(const T& val) { ...@@ -63,7 +63,7 @@ std::string to_string(const T& val) {
} }
#endif #endif
#if _MSC_VER < 1700 #if defined(_MSC_VER) && _MSC_VER < 1700
inline long long int strtoll (const char* str, char** endptr, int base) inline long long int strtoll (const char* str, char** endptr, int base)
{ {
return _strtoi64(str, endptr, base); return _strtoi64(str, endptr, base);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment