max_align.hpp 565 B

12345678910111213141516171819202122232425262728
  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_MAX_ALIGN_HPP
  9. #define BOOST_ALIGN_DETAIL_MAX_ALIGN_HPP
  10. #include <boost/align/detail/max_size.hpp>
  11. #include <boost/align/alignment_of.hpp>
  12. namespace boost {
  13. namespace alignment {
  14. namespace detail {
  15. template<class A, class B>
  16. struct max_align
  17. : max_size<alignment_of<A>::value, alignment_of<B>::value>::type {
  18. };
  19. } /* .detail */
  20. } /* .alignment */
  21. } /* .boost */
  22. #endif