Fix move operator for WUPSConfigCategory

This commit is contained in:
Maschell 2024-03-29 13:11:14 +01:00
parent 6b5c2ab95e
commit 5de93f178a

View File

@ -20,7 +20,8 @@ public:
WUPSConfigCategory &operator=(WUPSConfigCategory &&src) noexcept {
if (this != &src) {
src.mHandle = {};
this->mHandle = src.mHandle;
src.mHandle = {};
}
return *this;
}