From ac7d8e58b410631d031609f15787a05ea8f234bd Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Wed, 23 Mar 2022 11:02:13 +0100 Subject: [PATCH] Fixes non clang builds --- src/Enum.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Enum.hpp b/src/Enum.hpp index 1a9a690..2addf2b 100644 --- a/src/Enum.hpp +++ b/src/Enum.hpp @@ -47,7 +47,7 @@ #if defined(__clang__) #define ALLOW_UINTEGER_OVERFLOW __attribute__((no_sanitize("unsigned-integer-overflow"))) #else -#define ALLOW_INTEGER_OVERFLOW +#define ALLOW_UINTEGER_OVERFLOW #endif