diff --git a/include/godot_cpp/core/binder_common.hpp b/include/godot_cpp/core/binder_common.hpp index aed6b153..61eb6a04 100644 --- a/include/godot_cpp/core/binder_common.hpp +++ b/include/godot_cpp/core/binder_common.hpp @@ -261,6 +261,7 @@ void call_with_variant_args_ret_helper(T *p_instance, R (T::*p_method)(P...), co #else r_ret = (p_instance->*p_method)(VariantCaster
::cast(*p_args[Is])...);
#endif
+ (void)p_args; // Avoid warning.
}
template ::cast(*p_args[Is])...);
#endif
- (void)p_args;
+ (void)p_args; // Avoid warning.
}
template