2
0
mirror of https://github.com/boostorg/spirit.git synced 2026-01-19 04:42:11 +00:00

Spirit: Added missing namespace qualification

[SVN r60775]
This commit is contained in:
Hartmut Kaiser
2010-03-22 19:58:26 +00:00
parent 65151db9c9
commit ebfd9f18f1

View File

@@ -36,7 +36,7 @@ namespace tools
// Report invalid expression error as early as possible.
// If you got an error_invalid_expression error message here,
// then the expression (expr) is not a valid spirit qi expression.
BOOST_SPIRIT_ASSERT_MATCH(qi::domain, T);
BOOST_SPIRIT_ASSERT_MATCH(spirit::qi::domain, T);
typedef typename attribute_of_parser<T>::type type;
std::cout << typeid(type).name() << std::endl;
@@ -48,7 +48,7 @@ namespace tools
// Report invalid expression error as early as possible.
// If you got an error_invalid_expression error message here,
// then the expression (expr) is not a valid spirit qi expression.
BOOST_SPIRIT_ASSERT_MATCH(qi::domain, T);
BOOST_SPIRIT_ASSERT_MATCH(spirit::qi::domain, T);
typedef typename attribute_of_parser<T>::type type;
os << typeid(type).name() << std::endl;