diff options
author | SlugFiller <5435495+SlugFiller@users.noreply.github.com> | 2024-10-02 15:22:37 +0300 |
---|---|---|
committer | SlugFiller <5435495+SlugFiller@users.noreply.github.com> | 2024-10-02 15:22:37 +0300 |
commit | f14af8b2d5d218050894d728316f78a8dbefb978 (patch) | |
tree | 3f251fcc183010f203691be995f9383629214cd3 /modules | |
parent | f4af8201bac157b9d47e336203d3e8a8ef729de2 (diff) | |
download | redot-engine-f14af8b2d5d218050894d728316f78a8dbefb978.tar.gz |
Enable use of Labels as Values feature in Clang when not wrapped by GCC
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/gdscript_vm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_vm.cpp b/modules/gdscript/gdscript_vm.cpp index 4617a0dbb9..d8139d913a 100644 --- a/modules/gdscript/gdscript_vm.cpp +++ b/modules/gdscript/gdscript_vm.cpp @@ -227,7 +227,7 @@ void (*type_init_function_table[])(Variant *) = { &VariantInitializer<PackedVector4Array>::init, // PACKED_VECTOR4_ARRAY. }; -#if defined(__GNUC__) +#if defined(__GNUC__) || defined(__clang__) #define OPCODES_TABLE \ static const void *switch_table_ops[] = { \ &&OPCODE_OPERATOR, \ |