Explorar el Código

Enable use of Labels as Values feature in Clang when not wrapped by GCC

SlugFiller hace 11 meses
padre
commit
f14af8b2d5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      modules/gdscript/gdscript_vm.cpp

+ 1 - 1
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,                               \