123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_METAPARSE_V1_IMPL_IS_CHAR_C_HPP
- #define BOOST_METAPARSE_V1_IMPL_IS_CHAR_C_HPP
- #include <boost/mpl/bool.hpp>
- namespace boost
- {
- namespace metaparse
- {
- namespace v1
- {
- namespace impl
- {
- template <char C>
- struct is_char_c
- {
- typedef is_char_c type;
- template <class Ch>
- struct apply : boost::mpl::bool_<Ch::type::value == C> {};
- };
- }
- }
- }
- }
- #endif
|