// -*- C++ -*- /** * \file unique_ptr.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Guillaume Munch * * Full author contact details are available in file CREDITS. */ #ifndef LYX_UNIQUE_PTR_H #define LYX_UNIQUE_PTR_H #include namespace lyx { using std::unique_ptr; } /// Define lyx::make_unique() across platforms #ifdef HAVE_DEF_MAKE_UNIQUE namespace lyx { using std::make_unique; } #else // For all other compilers: // using https://isocpp.org/files/papers/N3656.txt #include #include #include namespace lyx { namespace { 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; }; } //anon namespace 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 std::remove_extent::type U; return unique_ptr(new U[n]()); } template typename _Unique_if::_Known_bound make_unique(Args&&...) = delete; } // namespace lyx #endif // definition of make_unique #endif // LYX_UNIQUE_PTR_H