From 7a79cbbc811a643ef193de0790609cd7bfea61fc Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 12 Mar 2016 15:27:54 +0000 Subject: Migrate code to c++14 --- src/utils.hh | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/utils.hh') diff --git a/src/utils.hh b/src/utils.hh index 06df21a1..9eced1c2 100644 --- a/src/utils.hh +++ b/src/utils.hh @@ -113,12 +113,6 @@ private: // *** Misc helper functions *** -template -std::unique_ptr make_unique(Args&&... args) -{ - return std::unique_ptr(new T(std::forward(args)...)); -} - template bool operator== (const std::unique_ptr& lhs, T* rhs) { -- cgit v1.2.3