]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/max.hpp
update
[lyx.git] / boost / boost / preprocessor / max.hpp
1 #ifndef BOOST_PREPROCESSOR_MAX_HPP
2 #define BOOST_PREPROCESSOR_MAX_HPP
3
4 /* Copyright (C) 2001
5  * Housemarque Oy
6  * http://www.housemarque.com
7  *
8  * Permission to copy, use, modify, sell and distribute this software is
9  * granted provided this copyright notice appears in all copies. This
10  * software is provided "as is" without express or implied warranty, and
11  * with no claim as to its suitability for any purpose.
12  *
13  * See http://www.boost.org for most recent version.
14  */
15
16 #include <boost/preprocessor/comparison/less_equal.hpp>
17 #include <boost/preprocessor/if.hpp>
18
19 /** <p>Expands to the maximum of <code>X</code> and <code>Y</code>.</p>
20
21 <p>Both <code>X</code> and <code>Y</code> must expand to integer literals
22 in the range [0, BOOST_PP_LIMIT_MAG].</p>
23
24 <p>For example, <code>BOOST_PP_MAX(5,7)</code> expands to <code>7</code> (a
25 single token).</p>
26
27 <h3>Test</h3>
28 <ul>
29   <li><a href="../../test/arithmetic_test.cpp">arithmetic_test.cpp</a></li>
30 </ul>
31 */
32 #define BOOST_PP_MAX(X,Y) BOOST_PP_MAX_D(0,X,Y)
33
34 /** <p>Can be used inside BOOST_PP_WHILE() (see for an explanation of the D parameter).</p> */
35 #define BOOST_PP_MAX_D(D,X,Y) BOOST_PP_IF(BOOST_PP_LESS_EQUAL_D(D,X,Y),Y,X)
36 #endif