1 
2 // Copyright Aleksey Gurtovoy 2001-2004
3 //
4 // Distributed under the Boost Software License, Version 1.0.
5 // (See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 //
8 // See http://www.boost.org/libs/mpl for documentation.
9 
10 // $Id$
11 // $Date$
12 // $Revision$
13 
14 // Necessary to overcome a strange name lookup bug in GCC 3.3 and 4.0 for Mac OS X
15 #if defined(__APPLE_CC__) && defined(__GNUC__) && (__GNUC__ <= 4)
16 #  include <cassert>
17 #endif
18 
19 #include <boost/mpl/size_t.hpp>
20 #include <boost/mpl/identity.hpp>
21 #include <boost/preprocessor/repetition/repeat_from_to.hpp>
22 
23 #include "integral_wrapper_test.hpp"
24 
MPL_TEST_CASE()25 MPL_TEST_CASE()
26 {
27 #   define WRAPPER(T, i) mpl::size_t<i>
28     BOOST_PP_REPEAT_FROM_TO(1, 11, INTEGRAL_WRAPPER_TEST, std::size_t)
29 }
30