Common.h: don't use to_string workaround on MSVC

Pre-VS2012 is no longer supported.

It might still be needed on Android, I haven't tested this.
This commit is contained in:
Johannes Kauffmann 2023-02-25 22:05:54 +01:00 committed by arcady-lunarg
parent f202aa665e
commit d9c3c7538b

View File

@ -54,7 +54,7 @@
#include <unordered_set> #include <unordered_set>
#include <vector> #include <vector>
#if defined(__ANDROID__) || (defined(_MSC_VER) && _MSC_VER < 1700) #if defined(__ANDROID__)
#include <sstream> #include <sstream>
namespace std { namespace std {
template<typename T> template<typename T>