2002-09-08 10:22:48 +00:00
|
|
|
# /* Copyright (C) 2001
|
|
|
|
# * Housemarque Oy
|
|
|
|
# * http://www.housemarque.com
|
|
|
|
# *
|
2004-09-13 15:51:29 +00:00
|
|
|
# * Distributed under the Boost Software License, Version 1.0. (See
|
|
|
|
# * accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
# * http://www.boost.org/LICENSE_1_0.txt)
|
2002-09-08 10:22:48 +00:00
|
|
|
# */
|
|
|
|
#
|
|
|
|
# /* Revised by Paul Mensonides (2002) */
|
2020-04-29 06:38:10 -04:00
|
|
|
# /* Revised by Edward Diener (2020) */
|
2002-09-08 10:22:48 +00:00
|
|
|
#
|
|
|
|
# /* See http://www.boost.org for most recent version. */
|
|
|
|
#
|
|
|
|
# ifndef BOOST_PREPROCESSOR_ARITHMETIC_INC_HPP
|
|
|
|
# define BOOST_PREPROCESSOR_ARITHMETIC_INC_HPP
|
|
|
|
#
|
2020-07-02 12:13:22 -04:00
|
|
|
# include <boost/preprocessor/config/config.hpp>
|
|
|
|
#
|
2002-09-08 10:22:48 +00:00
|
|
|
# /* BOOST_PP_INC */
|
|
|
|
#
|
2020-07-02 11:24:15 -04:00
|
|
|
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC()
|
|
|
|
# define BOOST_PP_INC(x) BOOST_PP_INC_I(x)
|
|
|
|
# else
|
|
|
|
# define BOOST_PP_INC(x) BOOST_PP_INC_OO((x))
|
|
|
|
# define BOOST_PP_INC_OO(par) BOOST_PP_INC_I ## par
|
|
|
|
# endif
|
|
|
|
#
|
|
|
|
# define BOOST_PP_INC_I(x) BOOST_PP_INC_ ## x
|
|
|
|
#
|
2020-04-29 06:38:10 -04:00
|
|
|
# include <boost/preprocessor/config/limits.hpp>
|
|
|
|
#
|
|
|
|
# if BOOST_PP_LIMIT_MAG == 256
|
2020-04-30 10:24:33 -04:00
|
|
|
# include <boost/preprocessor/arithmetic/limits/inc_256.hpp>
|
2020-04-29 06:38:10 -04:00
|
|
|
# elif BOOST_PP_LIMIT_MAG == 512
|
2020-07-02 11:24:15 -04:00
|
|
|
# include <boost/preprocessor/arithmetic/limits/inc_256.hpp>
|
2020-04-30 10:24:33 -04:00
|
|
|
# include <boost/preprocessor/arithmetic/limits/inc_512.hpp>
|
2020-07-27 07:54:05 -04:00
|
|
|
# elif BOOST_PP_LIMIT_MAG == 1024
|
|
|
|
# include <boost/preprocessor/arithmetic/limits/inc_256.hpp>
|
|
|
|
# include <boost/preprocessor/arithmetic/limits/inc_512.hpp>
|
|
|
|
# include <boost/preprocessor/arithmetic/limits/inc_1024.hpp>
|
2002-09-08 10:22:48 +00:00
|
|
|
# else
|
2020-04-29 06:38:10 -04:00
|
|
|
# error Incorrect value for the BOOST_PP_LIMIT_MAG limit
|
2002-09-08 10:22:48 +00:00
|
|
|
# endif
|
|
|
|
#
|
|
|
|
# endif
|