You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Remove unused initialize_ref
This commit is contained in:
@@ -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) {
|
void Variant::reference(const Variant &p_variant) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case NIL:
|
case NIL:
|
||||||
|
|||||||
@@ -254,7 +254,6 @@ private:
|
|||||||
} _data alignas(8);
|
} _data alignas(8);
|
||||||
|
|
||||||
void reference(const Variant &p_variant);
|
void reference(const Variant &p_variant);
|
||||||
static bool initialize_ref(Object *p_object);
|
|
||||||
|
|
||||||
void _clear_internal();
|
void _clear_internal();
|
||||||
|
|
||||||
|
|||||||
@@ -125,10 +125,6 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ static bool initialize_ref(Object *object) {
|
|
||||||
return Variant::initialize_ref(object);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Atomic types.
|
// Atomic types.
|
||||||
_FORCE_INLINE_ static bool *get_bool(Variant *v) { return &v->_data._bool; }
|
_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; }
|
_FORCE_INLINE_ static const bool *get_bool(const Variant *v) { return &v->_data._bool; }
|
||||||
|
|||||||
Reference in New Issue
Block a user