mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-14 23:05:13 +01:00
Fix move operator for WUPSConfigCategory
This commit is contained in:
parent
702580152f
commit
3b0e4bf4c5
@ -20,7 +20,8 @@ public:
|
|||||||
|
|
||||||
WUPSConfigCategory &operator=(WUPSConfigCategory &&src) noexcept {
|
WUPSConfigCategory &operator=(WUPSConfigCategory &&src) noexcept {
|
||||||
if (this != &src) {
|
if (this != &src) {
|
||||||
src.mHandle = {};
|
this->mHandle = src.mHandle;
|
||||||
|
src.mHandle = {};
|
||||||
}
|
}
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user