Files
boost_preprocessor/include/boost/preprocessor/detail/auto_rec.hpp

35 lines
1.2 KiB
C++
Raw Normal View History

2002-09-08 10:22:48 +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-08 10:22:48 +00:00
# * *
# ************************************************************************** */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_DETAIL_AUTO_REC_HPP
# define BOOST_PREPROCESSOR_DETAIL_AUTO_REC_HPP
#
# include <boost/preprocessor/config/config.hpp>
#
# if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_DMC()
# include <boost/preprocessor/detail/dmc/auto_rec.hpp>
# else
#
2002-09-08 10:22:48 +00:00
# /* BOOST_PP_AUTO_REC */
#
# include <boost/preprocessor/config/limits.hpp>
2002-09-08 10:22:48 +00:00
#
# if BOOST_PP_LIMIT_WHILE == 256
# include <boost/preprocessor/detail/auto_rec_256.hpp>
# elif BOOST_PP_LIMIT_WHILE == 512
# include <boost/preprocessor/detail/auto_rec_512.hpp>
# else
# error Incorrect value for the BOOST_PP_LIMIT_WHILE limit
# endif
2002-09-08 10:22:48 +00:00
#
# endif
# endif