1234567891011121314151617181920212223242526 |
- #ifndef BOOST_METAPARSE_V1_DIGIT_VAL_HPP
- #define BOOST_METAPARSE_V1_DIGIT_VAL_HPP
- #include <boost/metaparse/v1/digit.hpp>
- #include <boost/metaparse/v1/transform.hpp>
- #include <boost/metaparse/v1/util/digit_to_int.hpp>
- namespace boost
- {
- namespace metaparse
- {
- namespace v1
- {
- typedef transform<digit, util::digit_to_int<> > digit_val;
- }
- }
- }
- #endif
|