You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
41 lines
1.4 KiB
41 lines
1.4 KiB
# /* Copyright (C) 2001 |
|
# * Housemarque Oy |
|
# * http://www.housemarque.com |
|
# * |
|
# * 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) |
|
# */ |
|
# |
|
# /* Revised by Paul Mensonides (2002) */ |
|
# |
|
# /* See http://www.boost.org for most recent version. */ |
|
# |
|
# ifndef BOOST_PREPROCESSOR_LIST_ENUM_HPP |
|
# define BOOST_PREPROCESSOR_LIST_ENUM_HPP |
|
# |
|
# include <boost/preprocessor/config/config.hpp> |
|
# include <boost/preprocessor/list/for_each_i.hpp> |
|
# include <boost/preprocessor/punctuation/comma_if.hpp> |
|
# |
|
# /* BOOST_PP_LIST_ENUM */ |
|
# |
|
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() |
|
# define BOOST_PP_LIST_ENUM(list) BOOST_PP_LIST_FOR_EACH_I(BOOST_PP_LIST_ENUM_O, BOOST_PP_NIL, list) |
|
# else |
|
# define BOOST_PP_LIST_ENUM(list) BOOST_PP_LIST_ENUM_I(list) |
|
# define BOOST_PP_LIST_ENUM_I(list) BOOST_PP_LIST_FOR_EACH_I(BOOST_PP_LIST_ENUM_O, BOOST_PP_NIL, list) |
|
# endif |
|
# |
|
# define BOOST_PP_LIST_ENUM_O(r, _, i, elem) BOOST_PP_COMMA_IF(i) elem |
|
# |
|
# /* BOOST_PP_LIST_ENUM_R */ |
|
# |
|
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() |
|
# define BOOST_PP_LIST_ENUM_R(r, list) BOOST_PP_LIST_FOR_EACH_I_R(r, BOOST_PP_LIST_ENUM_O, BOOST_PP_NIL, list) |
|
# else |
|
# define BOOST_PP_LIST_ENUM_R(r, list) BOOST_PP_LIST_ENUM_R_I(r, list) |
|
# define BOOST_PP_LIST_ENUM_R_I(r, list) BOOST_PP_LIST_FOR_EACH_I_R(r, BOOST_PP_LIST_ENUM_O, BOOST_PP_NIL, list) |
|
# endif |
|
# |
|
# endif
|
|
|