Update stb to 5736b15 (Jan 29 2023)

This commit is contained in:
Dan Paulat 2023-09-17 00:54:40 -05:00
parent 2c0991cebc
commit 4f16d92ba3
2 changed files with 9 additions and 1 deletions

2
external/stb vendored

@ -1 +1 @@
Subproject commit 8b5f1f37b5b75829fc72d38e7b5d4bcbf8a26d55 Subproject commit 5736b15f7ea0ffb08dd38af21067c314d6a3aae9

View file

@ -7,8 +7,16 @@
# pragma GCC diagnostic ignored "-Wunused-but-set-variable" # pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#endif #endif
#if defined(_MSC_VER)
# pragma warning(push, 0)
#endif
#include <stb_image.h> #include <stb_image.h>
#if defined(__GNUC__) #if defined(__GNUC__)
# pragma GCC diagnostic pop # pragma GCC diagnostic pop
#endif #endif
#if defined(_MSC_VER)
# pragma warning(pop)
#endif