mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 14:58:11 -05:00
synchronized_wrapper: Add missing return in SynchronizedRef move assignment operator
This commit is contained in:
@ -55,6 +55,7 @@ public:
|
||||
SynchronizedRef& operator=(SynchronizedRef&) = delete;
|
||||
SynchronizedRef& operator=(SynchronizedRef&& o) {
|
||||
std::swap(wrapper, o.wrapper);
|
||||
return *this;
|
||||
}
|
||||
|
||||
T& operator*() { return wrapper->data; }
|
||||
|
Reference in New Issue
Block a user