123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_METAPARSE_V1_ERROR_EXPECTED_TO_FAIL_HPP
- #define BOOST_METAPARSE_V1_ERROR_EXPECTED_TO_FAIL_HPP
- #include <boost/metaparse/v1/define_error.hpp>
- namespace boost
- {
- namespace metaparse
- {
- namespace v1
- {
- namespace error
- {
- BOOST_METAPARSE_V1_DEFINE_ERROR(
- expected_to_fail,
- "Parser expected to fail"
- );
- }
- }
- }
- }
- #endif
|