libcruft-util/types.hpp

42 lines
1.2 KiB
C++
Raw Normal View History

2011-07-20 20:34:46 +10:00
/*
* This file is part of libgim.
*
* libgim is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
*
2012-04-23 13:06:41 +10:00
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
2011-07-20 20:34:46 +10:00
*/
2012-06-13 15:46:44 +10:00
#ifndef __UTIL_TYPES_HPP
#define __UTIL_TYPES_HPP
#include "platform.hpp"
2011-05-23 17:18:52 +10:00
#include <cstdint>
#include <cstdlib>
2011-07-16 14:47:34 +10:00
#include <memory>
2011-05-23 17:18:52 +10:00
/// Returns the number of elements of a statically allocated array
template <typename T, size_t N>
2014-03-03 14:09:41 +11:00
constexpr size_t elems(const T (&)[N])
{ return N; }
2012-06-20 16:48:29 +10:00
template <class T, class...Args>
std::unique_ptr<T>
make_unique(Args&&... args) {
return std::unique_ptr<T> (new T(std::forward<Args>(args)...));
}
2011-07-16 14:47:34 +10:00
2012-06-13 15:46:44 +10:00
#endif