alignment_of.hpp 611 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. (c) 2014-2015 Glen Joseph Fernandes
  3. <glenjofe -at- gmail.com>
  4. Distributed under the Boost Software
  5. License, Version 1.0.
  6. http://boost.org/LICENSE_1_0.txt
  7. */
  8. #ifndef BOOST_ALIGN_DETAIL_ALIGNMENT_OF_HPP
  9. #define BOOST_ALIGN_DETAIL_ALIGNMENT_OF_HPP
  10. #include <boost/align/detail/min_size.hpp>
  11. namespace boost {
  12. namespace alignment {
  13. namespace detail {
  14. template<class T>
  15. struct alignof_helper {
  16. char value;
  17. T object;
  18. };
  19. template<class T>
  20. struct alignment_of
  21. : min_size<sizeof(T),
  22. sizeof(alignof_helper<T>) - sizeof(T)>::type {
  23. };
  24. } /* .detail */
  25. } /* .alignment */
  26. } /* .boost */
  27. #endif