/* * GDevelop Core * This project is released under the MIT License. * * This file is from https://isocpp.org/files/papers/N3656.txt */ #ifndef GDCORE_MAKEUNIQUE_H #define GDCORE_MAKEUNIQUE_H #include /** * Temporary implementation of make_unique as it's not available in C++11. */ namespace gd { template struct _Unique_if { typedef std::unique_ptr _Single_object; }; template struct _Unique_if { typedef std::unique_ptr _Unknown_bound; }; template struct _Unique_if { typedef void _Known_bound; }; template typename _Unique_if::_Single_object make_unique(Args&&... args) { return std::unique_ptr(new T(std::forward(args)...)); } template typename _Unique_if::_Unknown_bound make_unique(size_t n) { typedef typename std::remove_extent::type U; return std::unique_ptr(new U[n]()); } template typename _Unique_if::_Known_bound make_unique(Args&&...) = delete; } // namespace gd #endif