File indexing completed on 2025-01-18 09:48:22
0001 #
0002
0003
0004
0005
0006
0007
0008
0009 #
0010 #
0011 #
0012 #
0013 #
0014 # ifndef BOOST_PREPROCESSOR_CONTROL_DEDUCE_D_HPP
0015 # define BOOST_PREPROCESSOR_CONTROL_DEDUCE_D_HPP
0016 #
0017 # include <boost/preprocessor/config/config.hpp>
0018 #
0019 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_STRICT()
0020 #
0021 # include <boost/preprocessor/control/while.hpp>
0022 # include <boost/preprocessor/detail/auto_rec.hpp>
0023 #
0024 #
0025 #
0026 # define BOOST_PP_DEDUCE_D() BOOST_PP_AUTO_REC(BOOST_PP_WHILE_P, 256)
0027 #
0028 # else
0029 #
0030 # include <boost/preprocessor/arithmetic/dec.hpp>
0031 # include <boost/preprocessor/control/while.hpp>
0032 # include <boost/preprocessor/detail/auto_rec.hpp>
0033 # include <boost/preprocessor/config/limits.hpp>
0034 #
0035 #
0036 #
0037 # if BOOST_PP_LIMIT_WHILE == 256
0038 # define BOOST_PP_DEDUCE_D() BOOST_PP_DEC(BOOST_PP_AUTO_REC(BOOST_PP_WHILE_P, 256))
0039 # elif BOOST_PP_LIMIT_WHILE == 512
0040 # define BOOST_PP_DEDUCE_D() BOOST_PP_DEC(BOOST_PP_AUTO_REC(BOOST_PP_WHILE_P, 512))
0041 # elif BOOST_PP_LIMIT_WHILE == 1024
0042 # define BOOST_PP_DEDUCE_D() BOOST_PP_DEC(BOOST_PP_AUTO_REC(BOOST_PP_WHILE_P, 1024))
0043 # else
0044 # error Incorrect value for the BOOST_PP_LIMIT_WHILE limit
0045 # endif
0046 #
0047 # endif
0048 #
0049 # endif