2014-12-28 03:19:21 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// (C) Copyright Ion Gaztanaga 2005-2013.
|
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
// See http://www.boost.org/libs/container for documentation.
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef BOOST_CONTAINER_DETAIL_VALUE_INIT_HPP
|
|
|
|
#define BOOST_CONTAINER_DETAIL_VALUE_INIT_HPP
|
|
|
|
|
2015-08-16 23:45:50 +00:00
|
|
|
#ifndef BOOST_CONFIG_HPP
|
|
|
|
# include <boost/config.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(BOOST_HAS_PRAGMA_ONCE)
|
2014-12-28 03:19:21 +00:00
|
|
|
# pragma once
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/container/detail/config_begin.hpp>
|
|
|
|
#include <boost/container/detail/workaround.hpp>
|
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
namespace container {
|
2018-08-21 16:04:16 +00:00
|
|
|
namespace dtl {
|
2014-12-28 03:19:21 +00:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
struct value_init
|
|
|
|
{
|
|
|
|
value_init()
|
|
|
|
: m_t()
|
|
|
|
{}
|
|
|
|
|
|
|
|
operator T &() { return m_t; }
|
|
|
|
|
2017-03-13 04:29:07 +00:00
|
|
|
T &get() { return m_t; }
|
|
|
|
|
2014-12-28 03:19:21 +00:00
|
|
|
T m_t;
|
|
|
|
};
|
|
|
|
|
2018-08-21 16:04:16 +00:00
|
|
|
} //namespace dtl {
|
2014-12-28 03:19:21 +00:00
|
|
|
} //namespace container {
|
|
|
|
} //namespace boost {
|
|
|
|
|
|
|
|
#include <boost/container/detail/config_end.hpp>
|
|
|
|
|
|
|
|
#endif //#ifndef BOOST_CONTAINER_DETAIL_VALUE_INIT_HPP
|