|
|
@@ -1,3 +1,10 @@
|
|
|
+#ifdef __GNUC__
|
|
|
+# pragma GCC diagnostic ignored "-Wshadow"
|
|
|
+#elif defined(_MSC_VER)
|
|
|
+# pragma warning(disable:4456) // warning C4456: declaration of 'k' hides previous local declaration
|
|
|
+# pragma warning(disable:4457) // warning C4457: declaration of 'y' hides function parameter
|
|
|
+#endif
|
|
|
+
|
|
|
/* stb_image - v2.06 - public domain image loader - http://nothings.org/stb_image.h
|
|
|
no warranty implied; use at your own risk
|
|
|
|