Build: Attempt better support for VS 2012.

Fix #1020. Fix #1021. Fix #1022.
This commit is contained in:
John Kessenich 2017-08-25 21:09:15 -06:00
parent 74c5f711b4
commit 8268a35504
4 changed files with 10 additions and 6 deletions

View file

@ -63,7 +63,7 @@ std::string to_string(const T& val) {
}
#endif
#if defined(_MSC_VER) && _MSC_VER < 1700
#if defined(_MSC_VER) && _MSC_VER < 1800
inline long long int strtoll (const char* str, char** endptr, int base)
{
return _strtoi64(str, endptr, base);