one_char_except.cpp 451 B

12345678910111213141516171819
  1. // Copyright Abel Sinkovics (abel@sinkovics.hu) 2011.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #include <boost/metaparse/one_char_except.hpp>
  6. #include "common.hpp"
  7. namespace
  8. {
  9. typedef boost::metaparse::one_char_except<char_0, char_1> oc;
  10. }
  11. #define TEST_NAME test_one_char_except
  12. #include "one_char_except_test.hpp"