123456789101112131415161718192021222324 |
- #ifndef BOOST_METAPARSE_V1_SPACES_HPP
- #define BOOST_METAPARSE_V1_SPACES_HPP
- #include <boost/metaparse/v1/repeated1.hpp>
- #include <boost/metaparse/v1/space.hpp>
- namespace boost
- {
- namespace metaparse
- {
- namespace v1
- {
- typedef repeated1<space> spaces;
- }
- }
- }
- #endif
|