mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-13 03:32:28 -04: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