2002-09-13 22:34:09 +00:00
|
|
|
# /* **************************************************************************
|
|
|
|
# * *
|
2004-07-27 03:43:34 +00:00
|
|
|
# * (C) Copyright Paul Mensonides 2002.
|
|
|
|
# * 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-13 22:34:09 +00:00
|
|
|
# * *
|
|
|
|
# ************************************************************************** */
|
|
|
|
#
|
2020-05-01 14:38:32 -04:00
|
|
|
# /* Revised by Edward Diener (2020) */
|
|
|
|
#
|
2002-09-13 22:34:09 +00:00
|
|
|
# /* See http://www.boost.org for most recent version. */
|
|
|
|
#
|
|
|
|
# ifndef BOOST_PREPROCESSOR_CONTROL_DEDUCE_D_HPP
|
|
|
|
# define BOOST_PREPROCESSOR_CONTROL_DEDUCE_D_HPP
|
|
|
|
#
|
|
|
|
# /* BOOST_PP_DEDUCE_D */
|
|
|
|
#
|
2020-04-29 06:38:10 -04:00
|
|
|
# include <boost/preprocessor/config/limits.hpp>
|
|
|
|
#
|
|
|
|
# if BOOST_PP_LIMIT_WHILE == 256
|
2020-04-30 10:24:33 -04:00
|
|
|
# include <boost/preprocessor/control/limits/deduce_d_256.hpp>
|
2020-04-29 06:38:10 -04:00
|
|
|
# elif BOOST_PP_LIMIT_WHILE == 512
|
2020-04-30 10:24:33 -04:00
|
|
|
# include <boost/preprocessor/control/limits/deduce_d_512.hpp>
|
2020-04-29 06:38:10 -04:00
|
|
|
# else
|
|
|
|
# error Incorrect value for the BOOST_PP_LIMIT_WHILE limit
|
|
|
|
# endif
|
2002-09-13 22:34:09 +00:00
|
|
|
#
|
|
|
|
# endif
|