aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/make_unique.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/make_unique.h')
-rw-r--r--src/common/make_unique.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common/make_unique.h b/src/common/make_unique.h
new file mode 100644
index 00000000..2a7b7641
--- /dev/null
+++ b/src/common/make_unique.h
@@ -0,0 +1,16 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#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