Update contrib.
1 //-----------------------------------------------------------------------------
2 // boost aligned_storage.hpp header file
3 // See http://www.boost.org for updates, documentation, and revision history.
4 //-----------------------------------------------------------------------------
6 // Copyright (c) 2002-2003
7 // Eric Friedman, Itay Maman
9 // Distributed under the Boost Software License, Version 1.0. (See
10 // accompanying file LICENSE_1_0.txt or copy at
11 // http://www.boost.org/LICENSE_1_0.txt)
13 #ifndef BOOST_ALIGNED_STORAGE_HPP
14 #define BOOST_ALIGNED_STORAGE_HPP
16 #include <cstddef> // for std::size_t
18 #include "boost/config.hpp"
19 #include "boost/detail/workaround.hpp"
20 #include "boost/type_traits/alignment_of.hpp"
21 #include "boost/type_traits/type_with_alignment.hpp"
22 #include "boost/type_traits/is_pod.hpp"
24 #include "boost/mpl/eval_if.hpp"
25 #include "boost/mpl/identity.hpp"
27 #include "boost/type_traits/detail/bool_trait_def.hpp"
31 namespace detail { namespace aligned_storage {
33 BOOST_STATIC_CONSTANT(
35 , alignment_of_max_align = ::boost::alignment_of<max_align>::value
39 // To be TR1 conforming this must be a POD type:
43 , std::size_t alignment_
45 struct aligned_storage_imp
51 typename mpl::eval_if_c<
52 alignment_ == std::size_t(-1)
53 , mpl::identity<detail::max_align>
54 , type_with_alignment<alignment_>
59 }} // namespace detail::aligned_storage
63 , std::size_t alignment_ = std::size_t(-1)
67 private: // representation
69 detail::aligned_storage::aligned_storage_imp<size_, alignment_> data_;
73 typedef detail::aligned_storage::aligned_storage_imp<size_, alignment_> type;
75 BOOST_STATIC_CONSTANT(
79 BOOST_STATIC_CONSTANT(
82 alignment_ == std::size_t(-1)
83 ? ::boost::detail::aligned_storage::alignment_of_max_align
88 #if defined(__GNUC__) &&\
90 (__GNUC__ == 3 && (__GNUC_MINOR__ > 2 ||\
91 (__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ >=3)))
93 private: // noncopyable
95 aligned_storage(const aligned_storage&);
96 aligned_storage& operator=(const aligned_storage&);
98 #else // gcc less than 3.2.3
100 public: // _should_ be noncopyable, but GCC compiler emits error
102 aligned_storage(const aligned_storage&);
103 aligned_storage& operator=(const aligned_storage&);
105 #endif // gcc < 3.2.3 workaround
124 #if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
126 const void* address() const
133 const void* address() const;
135 #endif // MSVC6 workaround
139 #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
141 // MSVC6 seems not to like inline functions with const void* returns, so we
142 // declare the following here:
144 template <std::size_t S, std::size_t A>
145 const void* aligned_storage<S,A>::address() const
147 return const_cast< aligned_storage<S,A>* >(this)->address();
150 #endif // MSVC6 workaround
152 #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
154 // Make sure that is_pod recognises aligned_storage<>::type
155 // as a POD (Note that aligned_storage<> itself is not a POD):
157 template <std::size_t size_, std::size_t alignment_>
158 struct is_pod<boost::detail::aligned_storage::aligned_storage_imp<size_,alignment_> >
159 BOOST_TT_AUX_BOOL_C_BASE(true)
161 BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(true)
168 #include "boost/type_traits/detail/bool_trait_undef.hpp"
170 #endif // BOOST_ALIGNED_STORAGE_HPP