File indexing completed on 2025-01-18 09:28:26
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_ALIGN_DETAIL_MAX_ALIGN_HPP
0009 #define BOOST_ALIGN_DETAIL_MAX_ALIGN_HPP
0010
0011 #include <boost/align/detail/max_size.hpp>
0012 #include <boost/align/alignment_of.hpp>
0013
0014 namespace boost {
0015 namespace alignment {
0016 namespace detail {
0017
0018 template<class A, class B>
0019 struct max_align
0020 : max_size<alignment_of<A>::value, alignment_of<B>::value> { };
0021
0022 }
0023 }
0024 }
0025
0026 #endif