diff options
author | Mario Schlack <m4r10.5ch14ck@gmail.com> | 2016-09-01 00:19:31 +0800 |
---|---|---|
committer | Mario Schlack <m4r10.5ch14ck@gmail.com> | 2016-09-01 00:19:31 +0800 |
commit | 588e124c533874b69b88d7245f6bc98c8e4e2588 (patch) | |
tree | 012f49a8ab21aacbb99a1ac7d24ec8d34e694a63 | |
parent | 5567350e1bf28ca9468b8321378f19e67ee03909 (diff) |
Fix release build. (II)
-rw-r--r-- | core/variant_call.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/variant_call.cpp b/core/variant_call.cpp index 069c20bc6e..c18122ece7 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; |