summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorSlugFiller <5435495+SlugFiller@users.noreply.github.com>2024-10-02 15:22:37 +0300
committerSlugFiller <5435495+SlugFiller@users.noreply.github.com>2024-10-02 15:22:37 +0300
commitf14af8b2d5d218050894d728316f78a8dbefb978 (patch)
tree3f251fcc183010f203691be995f9383629214cd3 /modules
parentf4af8201bac157b9d47e336203d3e8a8ef729de2 (diff)
downloadredot-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.cpp2
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, \