char.cpp 609 B

123456789101112131415161718192021222324
  1. // Copyright Eric Niebler 2008
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/mpl for documentation.
  8. // $Id: char.cpp 49240 2009-04-01 09:21:07Z eric_niebler $
  9. // $Date: 2009-04-01 02:21:07 -0700 (Wed, 1 Apr 2009) $
  10. // $Revision: 49240 $
  11. #include <boost/mpl/char.hpp>
  12. #include <boost/preprocessor/repeat.hpp>
  13. #include "integral_wrapper_test.hpp"
  14. MPL_TEST_CASE()
  15. {
  16. # define WRAPPER(T, i) char_<i>
  17. BOOST_PP_REPEAT(10, INTEGRAL_WRAPPER_TEST, char)
  18. }