one_char_except_c.cpp 445 B

123456789101112131415161718
  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_c.hpp>
  6. #include "common.hpp"
  7. namespace
  8. {
  9. typedef boost::metaparse::one_char_except_c<'0', '1'> oc;
  10. }
  11. #define TEST_NAME one_char_except_c
  12. #include "one_char_except_test.hpp"