mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-09 03:18:57 +01:00
Core/Misc: Replace Trinity::make_unique with std (#24869)
(cherry picked from commit bab5fd87a3)
This commit is contained in:
@@ -223,7 +223,7 @@ public:
|
||||
void QueueForDelayedDelete(T&& any)
|
||||
{
|
||||
_delayed_delete_queue.push_back(
|
||||
Trinity::make_unique<
|
||||
std::make_unique<
|
||||
DeleteableObject<typename std::decay<T>::type>
|
||||
>(std::forward<T>(any))
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user