#ifndef __PRECXX14_MAKE_UNIQUE__ #define __PRECXX14_MAKE_UNIQUE__ #if __cplusplus >= 201402L #include using std::make_unique #else #include #include #include #include template struct _Unique_if { typedef unique_ptr _Single_object; }; template struct _Unique_if { typedef unique_ptr _Unknown_bound; }; template struct _Unique_if { typedef void _Known_bound; }; template typename _Unique_if::_Single_object make_unique(Args&&... args) { return unique_ptr(new T(std::forward(args)...)); } template typename _Unique_if::_Unknown_bound make_unique(size_t n) { typedef typename remove_extent::type U; return unique_ptr(new U[n]()); } template typename _Unique_if::_Known_bound make_unique(Args&&...) = delete; #endif // C++11 #endif //__PRECXX14_MAKE_UNIQUE__