diff options
Diffstat (limited to 'thirdparty/glslang/patches/fix-mingw-snprintf.patch')
-rw-r--r-- | thirdparty/glslang/patches/fix-mingw-snprintf.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/thirdparty/glslang/patches/fix-mingw-snprintf.patch b/thirdparty/glslang/patches/fix-mingw-snprintf.patch deleted file mode 100644 index 2a51bc1f22..0000000000 --- a/thirdparty/glslang/patches/fix-mingw-snprintf.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/thirdparty/glslang/glslang/Include/Common.h b/thirdparty/glslang/glslang/Include/Common.h -index 733a790cfd..2c511bc1c5 100644 ---- a/thirdparty/glslang/glslang/Include/Common.h -+++ b/thirdparty/glslang/glslang/Include/Common.h -@@ -50,7 +50,9 @@ std::string to_string(const T& val) { - } - #endif - --#if (defined(_MSC_VER) && _MSC_VER < 1900 /*vs2015*/) || defined MINGW_HAS_SECURE_API -+// -- GODOT start -- -+#if (defined(_MSC_VER) && _MSC_VER < 1900 /*vs2015*/) /* || defined MINGW_HAS_SECURE_API */ -+// -- GODOT end -- - #include <basetsd.h> - #ifndef snprintf - #define snprintf sprintf_s |