Fixes non clang builds
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-03-23 11:02:13 +01:00
parent 9d02cca1a8
commit ac7d8e58b4

View File

@@ -47,7 +47,7 @@
#if defined(__clang__) #if defined(__clang__)
#define ALLOW_UINTEGER_OVERFLOW __attribute__((no_sanitize("unsigned-integer-overflow"))) #define ALLOW_UINTEGER_OVERFLOW __attribute__((no_sanitize("unsigned-integer-overflow")))
#else #else
#define ALLOW_INTEGER_OVERFLOW #define ALLOW_UINTEGER_OVERFLOW
#endif #endif