Core/Misc: Replace Trinity::make_unique with std (#24869)

(cherry picked from commit bab5fd87a3)
This commit is contained in:
Peter Keresztes Schmidt
2020-06-23 08:54:12 +02:00
parent dc41aae042
commit b210bb3713
15 changed files with 35 additions and 40 deletions

View File

@@ -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))
);