123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef REFERENT_STORAGE_DWA200278_HPP
- # define REFERENT_STORAGE_DWA200278_HPP
- # include <boost/mpl/if.hpp>
- # include <boost/type_traits/aligned_storage.hpp>
- # include <cstddef>
- namespace boost { namespace python { namespace detail {
- template <std::size_t size, std::size_t alignment = std::size_t(-1)>
- struct aligned_storage
- {
- union type
- {
- typename ::boost::aligned_storage<size, alignment>::type data;
- char bytes[size];
- };
- };
-
-
-
- template <class T> struct referent_size;
-
-
- template <class T>
- struct referent_size<T&>
- {
- BOOST_STATIC_CONSTANT(
- std::size_t, value = sizeof(T));
- };
- template <class T>
- struct referent_storage
- {
- typedef typename aligned_storage<referent_size<T>::value, alignment_of<T>::value>::type type;
- };
- }}}
- #endif
|