Files
boost_preprocessor/include/boost/preprocessor/seq/enum.hpp

30 lines
1.0 KiB
C++
Raw Normal View History

2002-11-07 23:16:43 +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-11-07 23:16:43 +00:00
# * *
# ************************************************************************** */
#
# /* Revised by Edward Diener (2020) */
#
2002-11-07 23:16:43 +00:00
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_SEQ_ENUM_HPP
# define BOOST_PREPROCESSOR_SEQ_ENUM_HPP
#
# /* BOOST_PP_SEQ_ENUM */
#
# include <boost/preprocessor/config/limits.hpp>
#
# if BOOST_PP_LIMIT_SEQ == 256
# include <boost/preprocessor/seq/limits/enum_256.hpp>
# elif BOOST_PP_LIMIT_SEQ == 512
# include <boost/preprocessor/seq/limits/enum_512.hpp>
2005-07-19 20:47:19 +00:00
# else
# error Incorrect value for the BOOST_PP_LIMIT_SEQ limit
2002-11-07 23:16:43 +00:00
# endif
#
# endif