Browse Source

Merge pull request #1740 from cloudwu/fixmingw

fix mingw build
Бранимир Караџић 6 years ago
parent
commit
680b4c546b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      3rdparty/glslang/glslang/Include/Common.h

+ 2 - 1
3rdparty/glslang/glslang/Include/Common.h

@@ -37,9 +37,10 @@
 #ifndef _COMMON_INCLUDED_
 #define _COMMON_INCLUDED_
 
+#include <sstream>
 
 #if defined(__ANDROID__) || (defined(_MSC_VER) && _MSC_VER < 1700)
-#include <sstream>
+
 namespace std {
 template<typename T>
 std::string to_string(const T& val) {