Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /*
0002 Copyright 2014 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_MIN_SIZE_HPP
0009 #define BOOST_ALIGN_DETAIL_MIN_SIZE_HPP
0010 
0011 #include <boost/align/detail/integral_constant.hpp>
0012 #include <cstddef>
0013 
0014 namespace boost {
0015 namespace alignment {
0016 namespace detail {
0017 
0018 template<std::size_t A, std::size_t B>
0019 struct min_size
0020     : integral_constant<std::size_t, (A < B) ? A : B> { };
0021 
0022 } /* detail */
0023 } /* alignment */
0024 } /* boost */
0025 
0026 #endif