From 04c71afe675a6e9724c5d6e6b91db44f75b72ae1 Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Thu, 24 Oct 2024 19:19:00 +0900 Subject: [PATCH] Remove now unnecessary undefines --- SDL3-CS/generate_bindings.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/SDL3-CS/generate_bindings.py b/SDL3-CS/generate_bindings.py index 004ff66..317f020 100644 --- a/SDL3-CS/generate_bindings.py +++ b/SDL3-CS/generate_bindings.py @@ -287,11 +287,6 @@ base_command = [ "--undefine-macro=__unix", "--undefine-macro=__unix__", "--undefine-macro=__APPLE__", - # GCC and LLVM use `long int` => int64, whereas MSVC uses `long long int` => int64. - # In terms of C# code gen, it's more accurate if we disable these to force LL, so - # that they're transformed to longs instead of ints. - "--undefine-macro=__LP64__", - "--undefine-macro=_LP64", ]