Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/preprocessor/test/iteration.cpp @ 47

Last change on this file since 47 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.1 KB
Line 
1# /* **************************************************************************
2#  *                                                                          *
3#  *     (C) Copyright Paul Mensonides 2002.
4#  *     Distributed under the Boost Software License, Version 1.0. (See
5#  *     accompanying file LICENSE_1_0.txt or copy at
6#  *     http://www.boost.org/LICENSE_1_0.txt)
7#  *                                                                          *
8#  ************************************************************************** */
9#
10# /* See http://www.boost.org for most recent version. */
11#
12# if !BOOST_PP_IS_SELFISH
13#
14# include <libs/preprocessor/test/iteration.h>
15#
16# define TEST(n) BEGIN n == n END
17#
18# define BOOST_PP_LOCAL_MACRO(n) TEST(n)
19# define BOOST_PP_LOCAL_LIMITS (1, 5)
20# include BOOST_PP_LOCAL_ITERATE()
21#
22# define BOOST_PP_LOCAL_MACRO(n) TEST(n)
23# define BOOST_PP_LOCAL_LIMITS (5, 1)
24# include BOOST_PP_LOCAL_ITERATE()
25#
26# define BOOST_PP_INDIRECT_SELF <libs/preprocessor/test/iteration.cpp>
27# include BOOST_PP_INCLUDE_SELF()
28#
29# else
30
31BEGIN BOOST_PP_IS_SELFISH == 1 END
32
33# endif
Note: See TracBrowser for help on using the repository browser.