Common: Remove Common::make_unique, use std::make_unique
This commit is contained in:
parent
b83e95727f
commit
a06dcfeb61
24 changed files with 46 additions and 73 deletions
|
@ -42,7 +42,6 @@ set(HEADERS
|
|||
logging/filter.h
|
||||
logging/log.h
|
||||
logging/backend.h
|
||||
make_unique.h
|
||||
math_util.h
|
||||
memory_util.h
|
||||
microprofile.h
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <algorithm>
|
||||
#include <memory>
|
||||
|
||||
namespace Common {
|
||||
|
||||
template <typename T, typename... Args>
|
||||
std::unique_ptr<T> make_unique(Args&&... args) {
|
||||
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
|
||||
}
|
||||
|
||||
} // namespace
|
Loading…
Add table
Add a link
Reference in a new issue