Fix move operator for WUPSConfigCategory

This commit is contained in:
Maschell 2024-03-29 13:11:14 +01:00
parent 702580152f
commit 3b0e4bf4c5
1 changed files with 2 additions and 1 deletions

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;
}