Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:26

0001 /*
0002 Copyright 2014-2015 Glen Joseph Fernandes
0003 (glenjofe@gmail.com)
0004 
0005 Distributed under the Boost Software License, Version 1.0.
0006 (http://www.boost.org/LICENSE_1_0.txt)
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 } /* detail */
0023 } /* alignment */
0024 } /* boost */
0025 
0026 #endif