mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
fix Ref and WeakRef move assignment operator
This commit is contained in:
parent
71c585f80d
commit
f3525035ad
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue