Skip to content

Commit

Permalink
Common.h: don't use to_string workaround on MSVC
Browse files Browse the repository at this point in the history
Pre-VS2012 is no longer supported.

It might still be needed on Android, I haven't tested this.
  • Loading branch information
JohannesKauffmann authored and arcady-lunarg committed May 10, 2023
1 parent f202aa6 commit d9c3c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glslang/Include/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#include <unordered_set>
#include <vector>

#if defined(__ANDROID__) || (defined(_MSC_VER) && _MSC_VER < 1700)
#if defined(__ANDROID__)
#include <sstream>
namespace std {
template<typename T>
Expand Down

0 comments on commit d9c3c75

Please sign in to comment.