1234567891011121314151617181920212223242526272829303132 |
- namespace boost { namespace spirit
- {
- ///////////////////////////////////////////////////////////////////////////
- // Enablers
- ///////////////////////////////////////////////////////////////////////////
- template <typename CharEncoding>
- struct use_directive<
- qi::domain, tag::char_code<tag::no_case, CharEncoding> > // enables no_case
- : mpl::true_ {};
- template <typename CharEncoding>
- struct is_modifier_directive<qi::domain, tag::char_code<tag::no_case, CharEncoding> >
- : mpl::true_ {};
- }}
|