cpp-utilities/misc/memory.h

44 lines
1.1 KiB
C
Raw Normal View History

2015-04-22 18:36:40 +02:00
#ifndef MEMORY_H
#define MEMORY_H
#include <memory>
2016-07-27 18:16:04 +02:00
/// \cond
2015-04-22 18:36:40 +02:00
#if __cplusplus <= 201103L
#define __cpp_lib_make_unique 201304
namespace std {
2017-05-01 03:13:11 +02:00
template <typename _Tp> struct _MakeUniq {
typedef unique_ptr<_Tp> __single_object;
};
template <typename _Tp> struct _MakeUniq<_Tp[]> {
typedef unique_ptr<_Tp[]> __array;
};
template <typename _Tp, size_t _Bound> struct _MakeUniq<_Tp[_Bound]> {
struct __invalid_type {
};
};
/// std::make_unique for single objects
template <typename _Tp, typename... _Args> inline typename _MakeUniq<_Tp>::__single_object make_unique(_Args &&... __args)
{
return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...));
}
/// std::make_unique for arrays of unknown bound
template <typename _Tp> inline typename _MakeUniq<_Tp>::__array make_unique(size_t __num)
{
return unique_ptr<_Tp>(new typename remove_extent<_Tp>::type[__num]());
}
/// Disable std::make_unique for arrays of known bound
template <typename _Tp, typename... _Args> inline typename _MakeUniq<_Tp>::__invalid_type make_unique(_Args &&...) = delete;
} // namespace std
2015-04-22 18:36:40 +02:00
#endif
2016-07-27 18:16:04 +02:00
/// \endcond
2015-04-22 18:36:40 +02:00
#endif // MEMORY_H