You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Fix dead code in gdnative_interface.cpp
This pull request fixes dead code found in `gdnative_interface.cpp`
This commit is contained in:
@@ -281,8 +281,9 @@ static GDNativeBool gdnative_variant_has_key(const GDNativeVariantPtr p_self, co
|
|||||||
const Variant *self = (const Variant *)p_self;
|
const Variant *self = (const Variant *)p_self;
|
||||||
const Variant *key = (const Variant *)p_key;
|
const Variant *key = (const Variant *)p_key;
|
||||||
bool valid;
|
bool valid;
|
||||||
return self->has_key(*key, valid);
|
bool ret = self->has_key(*key, valid);
|
||||||
*r_valid = valid;
|
*r_valid = valid;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gdnative_variant_get_type_name(GDNativeVariantType p_type, GDNativeStringPtr r_ret) {
|
static void gdnative_variant_get_type_name(GDNativeVariantType p_type, GDNativeStringPtr r_ret) {
|
||||||
|
|||||||
Reference in New Issue
Block a user