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

Private GIT Repository
3ef7a283fe0c77e9340613afdffa65d75dcd2df3
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / preprocessor / arithmetic / sub.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_ARITHMETIC_SUB_HPP\r
15 # define BOOST_PREPROCESSOR_ARITHMETIC_SUB_HPP\r
16 #\r
17 # include <boost/preprocessor/arithmetic/dec.hpp>\r
18 # include <boost/preprocessor/config/config.hpp>\r
19 # include <boost/preprocessor/control/while.hpp>\r
20 # include <boost/preprocessor/tuple/elem.hpp>\r
21 #\r
22 # /* BOOST_PP_SUB */\r
23 #\r
24 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()\r
25 #    define BOOST_PP_SUB(x, y) BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PP_WHILE(BOOST_PP_SUB_P, BOOST_PP_SUB_O, (x, y)))\r
26 # else\r
27 #    define BOOST_PP_SUB(x, y) BOOST_PP_SUB_I(x, y)\r
28 #    define BOOST_PP_SUB_I(x, y) BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PP_WHILE(BOOST_PP_SUB_P, BOOST_PP_SUB_O, (x, y)))\r
29 # endif\r
30 #\r
31 # define BOOST_PP_SUB_P(d, xy) BOOST_PP_TUPLE_ELEM(2, 1, xy)\r
32 #\r
33 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC()\r
34 #    define BOOST_PP_SUB_O(d, xy) BOOST_PP_SUB_O_I xy\r
35 # else\r
36 #    define BOOST_PP_SUB_O(d, xy) BOOST_PP_SUB_O_I(BOOST_PP_TUPLE_ELEM(2, 0, xy), BOOST_PP_TUPLE_ELEM(2, 1, xy))\r
37 # endif\r
38 #\r
39 # define BOOST_PP_SUB_O_I(x, y) (BOOST_PP_DEC(x), BOOST_PP_DEC(y))\r
40 #\r
41 # /* BOOST_PP_SUB_D */\r
42 #\r
43 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()\r
44 #    define BOOST_PP_SUB_D(d, x, y) BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PP_WHILE_ ## d(BOOST_PP_SUB_P, BOOST_PP_SUB_O, (x, y)))\r
45 # else\r
46 #    define BOOST_PP_SUB_D(d, x, y) BOOST_PP_SUB_D_I(d, x, y)\r
47 #    define BOOST_PP_SUB_D_I(d, x, y) BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PP_WHILE_ ## d(BOOST_PP_SUB_P, BOOST_PP_SUB_O, (x, y)))\r
48 # endif\r
49 #\r
50 # endif\r