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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user