mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
Core/Utils: Added missing member access in unique_trackable_ptr move assignment operator
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