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) */
|
|
|
|
#
|
|
|
|
# /* See http://www.boost.org for most recent version. */
|
|
|
|
#
|
|
|
|
# ifndef BOOST_PREPROCESSOR_CONTROL_WHILE_HPP
|
|
|
|
# define BOOST_PREPROCESSOR_CONTROL_WHILE_HPP
|
|
|
|
#
|
|
|
|
# /* BOOST_PP_WHILE */
|
|
|
|
#
|
2020-04-29 06:38:10 -04:00
|
|
|
# include <boost/preprocessor/config/limits.hpp>
|
2002-09-08 10:22:48 +00:00
|
|
|
#
|
2020-04-29 06:38:10 -04:00
|
|
|
# if BOOST_PP_LIMIT_WHILE == 256
|
|
|
|
# include <boost/preprocessor/control/while_256.hpp>
|
|
|
|
# elif BOOST_PP_LIMIT_MAG == 512
|
|
|
|
# include <boost/preprocessor/control/while_512.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_WHILE limit
|
2002-09-08 10:22:48 +00:00
|
|
|
# endif
|
|
|
|
#
|
|
|
|
# endif
|