office-gobmx/include/o3tl/make_unique.hxx
Stephan Bergmann 64d06e5f16 Fix o3tl::make_unique
...after 3f20471490 "use std::unique_ptr in
FlatFndBox: and extend o3tl::make_unique to cope with arrays"

Change-Id: I17a07d0be677aa4a5427be4a5c2f05ed8b675726
2017-07-14 08:52:33 +02:00

51 lines
1.1 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_O3TL_MAKE_UNIQUE_HXX
#define INCLUDED_O3TL_MAKE_UNIQUE_HXX
#include <memory>
#include <utility>
#include <type_traits>
namespace o3tl
{
/**
* Constructs an object of type T and wraps it in a std::unique_ptr.
*
* Can be replaced by std::make_unique when we allow C++14.
*/
template<typename T, typename... Args>
typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
make_unique(Args&& ... args)
{
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
/**
* for arrays
*/
template <class T>
typename std::enable_if
<
std::is_array<T>::value,
std::unique_ptr<T>
>::type
make_unique(std::size_t n)
{
typedef typename std::remove_extent<T>::type RT;
return std::unique_ptr<T>(new RT[n]);
}
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */