mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Merge pull request #94679 from rune-scape/remove-unused-initialize_ref
Remove unused `initialize_ref`
This commit is contained in:
commit
71accb9008
@ -1072,13 +1072,6 @@ bool Variant::is_null() const {
|
||||
}
|
||||
}
|
||||
|
||||
bool Variant::initialize_ref(Object *p_object) {
|
||||
RefCounted *ref_counted = const_cast<RefCounted *>(static_cast<const RefCounted *>(p_object));
|
||||
if (!ref_counted->init_ref()) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
void Variant::reference(const Variant &p_variant) {
|
||||
switch (type) {
|
||||
case NIL:
|
||||
|
@ -254,7 +254,6 @@ private:
|
||||
} _data alignas(8);
|
||||
|
||||
void reference(const Variant &p_variant);
|
||||
static bool initialize_ref(Object *p_object);
|
||||
|
||||
void _clear_internal();
|
||||
|
||||
|
@ -125,10 +125,6 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
_FORCE_INLINE_ static bool initialize_ref(Object *object) {
|
||||
return Variant::initialize_ref(object);
|
||||
}
|
||||
|
||||
// Atomic types.
|
||||
_FORCE_INLINE_ static bool *get_bool(Variant *v) { return &v->_data._bool; }
|
||||
_FORCE_INLINE_ static const bool *get_bool(const Variant *v) { return &v->_data._bool; }
|
||||
|
Loading…
Reference in New Issue
Block a user