blob: 74331f238813123e7d99b62aca0abfb7c5e56749 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001# /* Copyright (C) 2001
2# * Housemarque Oy
3# * http://www.housemarque.com
4# *
5# * Distributed under the Boost Software License, Version 1.0. (See
6# * accompanying file LICENSE_1_0.txt or copy at
7# * http://www.boost.org/LICENSE_1_0.txt)
8# */
9#
10# /* Revised by Paul Mensonides (2002) */
11#
12# /* See http://www.boost.org for most recent version. */
13#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070014# ifndef NDNBOOST_PREPROCESSOR_ARITHMETIC_SUB_HPP
15# define NDNBOOST_PREPROCESSOR_ARITHMETIC_SUB_HPP
Jeff Thompsonf7d49942013-08-01 16:47:40 -070016#
Jeff Thompson2277ce52013-08-01 17:34:11 -070017# include <ndnboost/preprocessor/arithmetic/dec.hpp>
18# include <ndnboost/preprocessor/config/config.hpp>
19# include <ndnboost/preprocessor/control/while.hpp>
20# include <ndnboost/preprocessor/tuple/elem.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070021#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070022# /* NDNBOOST_PP_SUB */
Jeff Thompsonf7d49942013-08-01 16:47:40 -070023#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070024# if ~NDNBOOST_PP_CONFIG_FLAGS() & NDNBOOST_PP_CONFIG_EDG()
25# define NDNBOOST_PP_SUB(x, y) NDNBOOST_PP_TUPLE_ELEM(2, 0, NDNBOOST_PP_WHILE(NDNBOOST_PP_SUB_P, NDNBOOST_PP_SUB_O, (x, y)))
Jeff Thompsonf7d49942013-08-01 16:47:40 -070026# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070027# define NDNBOOST_PP_SUB(x, y) NDNBOOST_PP_SUB_I(x, y)
28# define NDNBOOST_PP_SUB_I(x, y) NDNBOOST_PP_TUPLE_ELEM(2, 0, NDNBOOST_PP_WHILE(NDNBOOST_PP_SUB_P, NDNBOOST_PP_SUB_O, (x, y)))
Jeff Thompsonf7d49942013-08-01 16:47:40 -070029# endif
30#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070031# define NDNBOOST_PP_SUB_P(d, xy) NDNBOOST_PP_TUPLE_ELEM(2, 1, xy)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070032#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070033# if ~NDNBOOST_PP_CONFIG_FLAGS() & NDNBOOST_PP_CONFIG_MWCC()
34# define NDNBOOST_PP_SUB_O(d, xy) NDNBOOST_PP_SUB_O_I xy
Jeff Thompsonf7d49942013-08-01 16:47:40 -070035# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070036# define NDNBOOST_PP_SUB_O(d, xy) NDNBOOST_PP_SUB_O_I(NDNBOOST_PP_TUPLE_ELEM(2, 0, xy), NDNBOOST_PP_TUPLE_ELEM(2, 1, xy))
Jeff Thompsonf7d49942013-08-01 16:47:40 -070037# endif
38#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070039# define NDNBOOST_PP_SUB_O_I(x, y) (NDNBOOST_PP_DEC(x), NDNBOOST_PP_DEC(y))
Jeff Thompsonf7d49942013-08-01 16:47:40 -070040#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070041# /* NDNBOOST_PP_SUB_D */
Jeff Thompsonf7d49942013-08-01 16:47:40 -070042#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070043# if ~NDNBOOST_PP_CONFIG_FLAGS() & NDNBOOST_PP_CONFIG_EDG()
44# define NDNBOOST_PP_SUB_D(d, x, y) NDNBOOST_PP_TUPLE_ELEM(2, 0, NDNBOOST_PP_WHILE_ ## d(NDNBOOST_PP_SUB_P, NDNBOOST_PP_SUB_O, (x, y)))
Jeff Thompsonf7d49942013-08-01 16:47:40 -070045# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046# define NDNBOOST_PP_SUB_D(d, x, y) NDNBOOST_PP_SUB_D_I(d, x, y)
47# define NDNBOOST_PP_SUB_D_I(d, x, y) NDNBOOST_PP_TUPLE_ELEM(2, 0, NDNBOOST_PP_WHILE_ ## d(NDNBOOST_PP_SUB_P, NDNBOOST_PP_SUB_O, (x, y)))
Jeff Thompsonf7d49942013-08-01 16:47:40 -070048# endif
49#
50# endif