Files
boost_preprocessor/include/boost/preprocessor/repetition/deduce_r.hpp

30 lines
1.1 KiB
C++
Raw Normal View History

2002-09-13 22:34:09 +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
# * *
# ************************************************************************** */
#
# /* 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_REPETITION_DEDUCE_R_HPP
# define BOOST_PREPROCESSOR_REPETITION_DEDUCE_R_HPP
#
# /* BOOST_PP_DEDUCE_R */
#
# include <boost/preprocessor/config/limits.hpp>
#
# if BOOST_PP_LIMIT_FOR == 256
# include <boost/preprocessor/repetition/limits/deduce_r_256.hpp>
# elif BOOST_PP_LIMIT_FOR == 512
# include <boost/preprocessor/repetition/limits/deduce_r_512.hpp>
# else
# error Incorrect value for the BOOST_PP_LIMIT_FOR limit
# endif
2002-09-13 22:34:09 +00:00
#
# endif