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 
6 #include <boost/metaparse/one_char_except.hpp>
7 
8 #include "common.hpp"
9 
10 namespace
11 {
12   typedef boost::metaparse::one_char_except<char_0, char_1> oc;
13 }
14 
15 #define TEST_NAME test_one_char_except
16 
17 #include "one_char_except_test.hpp"
18 
19 
20