ignore sign conversions in stb_sprintf.h

This commit is contained in:
Nikita Smith
2025-08-21 15:16:52 -07:00
committed by Ryan Fleury
parent daf69ff1c7
commit fc4e269211
+14
View File
@@ -628,10 +628,24 @@ index_of_zero_u64(U64 *ptr, U64 count)
//~ rjf: Third Party Includes
#if !BUILD_SUPPLEMENTARY_UNIT
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wsign-conversion"
#elif defined(_MSC_VER)
#pragma warning (push, 0)
#endif
# define STB_SPRINTF_IMPLEMENTATION
# define STB_SPRINTF_STATIC
# include "third_party/stb/stb_sprintf.h"
#endif
#if defined(__clang__)
#pragma clang diagnostic pop
#elif defined(_MSC_VER)
#pragma warning (pop, 0)
#endif
////////////////////////////////
//~ rjf: String <-> Integer Tables