aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMario Schlack2016-09-01 00:19:31 +0800
committerMario Schlack2016-09-01 00:19:31 +0800
commit588e124c533874b69b88d7245f6bc98c8e4e2588 (patch)
tree012f49a8ab21aacbb99a1ac7d24ec8d34e694a63 /core
parent5567350e1bf28ca9468b8321378f19e67ee03909 (diff)
downloadgodot-588e124c533874b69b88d7245f6bc98c8e4e2588.tar.gz
godot-588e124c533874b69b88d7245f6bc98c8e4e2588.tar.zst
godot-588e124c533874b69b88d7245f6bc98c8e4e2588.zip
Fix release build. (II)
Diffstat (limited to 'core')
-rw-r--r--core/variant_call.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/variant_call.cpp b/core/variant_call.cpp
index 069c20bc6..c18122ece 100644
--- a/core/variant_call.cpp
+++ b/core/variant_call.cpp
@@ -54,10 +54,10 @@ struct _VariantCall {
int arg_count;
Vector<Variant> default_args;
Vector<Variant::Type> arg_types;
-
-#ifdef DEBUG_ENABLED
Vector<StringName> arg_names;
Variant::Type return_type;
+
+#ifdef DEBUG_ENABLED
bool returns;
#endif
VariantFunc func;