mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-15 23:35:15 +01:00
Fix move operator for WUPSConfigCategory
This commit is contained in:
parent
6b5c2ab95e
commit
5de93f178a
@ -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