Core/Utils: Added missing member access in unique_trackable_ptr move assignment operator

(cherry picked from commit 6b255efb2d)
This commit is contained in:
Shauren
2024-03-12 21:02:28 +01:00
committed by funjoker
parent 0ddc76d8a5
commit 22bf2daaf7

View File

@@ -61,7 +61,7 @@ public:
unique_trackable_ptr& operator=(unique_trackable_ptr&& other) noexcept
{
_ptr = std::move(other);
_ptr = std::move(other._ptr);
return *this;
}