Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks
This commit is contained in:
@ -34,7 +34,6 @@
|
||||
#include "core/resource.h"
|
||||
|
||||
void RefPtr::operator=(const RefPtr &p_other) {
|
||||
|
||||
Ref<Reference> *ref = reinterpret_cast<Ref<Reference> *>(&data[0]);
|
||||
Ref<Reference> *ref_other = reinterpret_cast<Ref<Reference> *>(const_cast<char *>(&p_other.data[0]));
|
||||
|
||||
@ -42,7 +41,6 @@ void RefPtr::operator=(const RefPtr &p_other) {
|
||||
}
|
||||
|
||||
bool RefPtr::operator==(const RefPtr &p_other) const {
|
||||
|
||||
Ref<Reference> *ref = reinterpret_cast<Ref<Reference> *>(&data[0]);
|
||||
Ref<Reference> *ref_other = reinterpret_cast<Ref<Reference> *>(const_cast<char *>(&p_other.data[0]));
|
||||
|
||||
@ -50,7 +48,6 @@ bool RefPtr::operator==(const RefPtr &p_other) const {
|
||||
}
|
||||
|
||||
bool RefPtr::operator!=(const RefPtr &p_other) const {
|
||||
|
||||
Ref<Reference> *ref = reinterpret_cast<Ref<Reference> *>(&data[0]);
|
||||
Ref<Reference> *ref_other = reinterpret_cast<Ref<Reference> *>(const_cast<char *>(&p_other.data[0]));
|
||||
|
||||
@ -58,7 +55,6 @@ bool RefPtr::operator!=(const RefPtr &p_other) const {
|
||||
}
|
||||
|
||||
RefPtr::RefPtr(const RefPtr &p_other) {
|
||||
|
||||
memnew_placement(&data[0], Ref<Reference>);
|
||||
|
||||
Ref<Reference> *ref = reinterpret_cast<Ref<Reference> *>(&data[0]);
|
||||
@ -68,13 +64,11 @@ RefPtr::RefPtr(const RefPtr &p_other) {
|
||||
}
|
||||
|
||||
bool RefPtr::is_null() const {
|
||||
|
||||
Ref<Reference> *ref = reinterpret_cast<Ref<Reference> *>(&data[0]);
|
||||
return ref->is_null();
|
||||
}
|
||||
|
||||
RID RefPtr::get_rid() const {
|
||||
|
||||
Ref<Reference> *ref = reinterpret_cast<Ref<Reference> *>(&data[0]);
|
||||
if (ref->is_null())
|
||||
return RID();
|
||||
@ -85,19 +79,16 @@ RID RefPtr::get_rid() const {
|
||||
}
|
||||
|
||||
void RefPtr::unref() {
|
||||
|
||||
Ref<Reference> *ref = reinterpret_cast<Ref<Reference> *>(&data[0]);
|
||||
ref->unref();
|
||||
}
|
||||
|
||||
RefPtr::RefPtr() {
|
||||
|
||||
ERR_FAIL_COND(sizeof(Ref<Reference>) > DATASIZE);
|
||||
memnew_placement(&data[0], Ref<Reference>);
|
||||
}
|
||||
|
||||
RefPtr::~RefPtr() {
|
||||
|
||||
Ref<Reference> *ref = reinterpret_cast<Ref<Reference> *>(&data[0]);
|
||||
ref->~Ref<Reference>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user