aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/make_unique.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2014-12-20 03:21:23 -0200
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2014-12-20 03:45:02 -0200
commit82528ba7df7bb8b2a6d89c416a66aee5c39f7f66 (patch)
tree98e535bae4b71d89614a0e75b7d83b4de0fa1c5b /src/common/make_unique.h
parentf1309e6bf0d29cc0f71f9864ea7e2c1dc62eb23b (diff)
Common: Add a clone of std::make_unique
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