]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/preprocessor/comparison/greater.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
c0ef4bcb0a35b9127b39bb650b0e8cfb9140f285
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / preprocessor / comparison / greater.hpp
1 # /* Copyright (C) 2001\r
2 #  * Housemarque Oy\r
3 #  * http://www.housemarque.com\r
4 #  *\r
5 #  * Distributed under the Boost Software License, Version 1.0. (See\r
6 #  * accompanying file LICENSE_1_0.txt or copy at\r
7 #  * http://www.boost.org/LICENSE_1_0.txt)\r
8 #  */\r
9 #\r
10 # /* Revised by Paul Mensonides (2002) */\r
11 #\r
12 # /* See http://www.boost.org for most recent version. */\r
13 #\r
14 # ifndef BOOST_PREPROCESSOR_COMPARISON_GREATER_HPP\r
15 # define BOOST_PREPROCESSOR_COMPARISON_GREATER_HPP\r
16 #\r
17 # include <boost/preprocessor/comparison/less.hpp>\r
18 # include <boost/preprocessor/config/config.hpp>\r
19 #\r
20 # /* BOOST_PP_GREATER */\r
21 #\r
22 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()\r
23 #    define BOOST_PP_GREATER(x, y) BOOST_PP_LESS(y, x)\r
24 # else\r
25 #    define BOOST_PP_GREATER(x, y) BOOST_PP_GREATER_I(x, y)\r
26 #    define BOOST_PP_GREATER_I(x, y) BOOST_PP_LESS(y, x)\r
27 # endif\r
28 #\r
29 # /* BOOST_PP_GREATER_D */\r
30 #\r
31 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()\r
32 #    define BOOST_PP_GREATER_D(d, x, y) BOOST_PP_LESS_D(d, y, x)\r
33 # else\r
34 #    define BOOST_PP_GREATER_D(d, x, y) BOOST_PP_GREATER_D_I(d, x, y)\r
35 #    define BOOST_PP_GREATER_D_I(d, x, y) BOOST_PP_LESS_D(d, y, x)\r
36 # endif\r
37 #\r
38 # endif\r