mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 08:28:32 +01:00
Core/Utils: Added missing member access in unique_trackable_ptr move assignment operator
(cherry picked from commit 6b255efb2d)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user