fix Ref and WeakRef move assignment operator

This commit is contained in:
dankmeme01 2024-06-17 12:56:12 +02:00
parent 71c585f80d
commit f3525035ad

View file

@ -304,7 +304,8 @@ namespace geode {
}
Ref<T>& operator=(Ref<T>&& other) {
this->swap(other.data());
m_obj = other.data();
other.m_obj = nullptr;
return *this;
}
@ -467,7 +468,7 @@ namespace geode {
}
WeakRef<T>& operator=(WeakRef<T>&& other) {
this->swap(static_cast<T*>(other.m_controller->get()));
m_controller = std::move(other.m_controller);
return *this;
}