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

This commit is contained in:
Peter Keresztes Schmidt
2020-06-23 08:54:12 +02:00
committed by GitHub
parent 01c8d03e2e
commit bab5fd87a3
26 changed files with 59 additions and 64 deletions

View File

@@ -936,7 +936,7 @@ private:
}
// Create the source listener
auto listener = Trinity::make_unique<SourceUpdateListener>(
auto listener = std::make_unique<SourceUpdateListener>(
sScriptReloadMgr->GetSourceDirectory() / module_name,
module_name);