From ebfd9f18f16de456b195bc48d23dfe3a184b008c Mon Sep 17 00:00:00 2001 From: Hartmut Kaiser Date: Mon, 22 Mar 2010 19:58:26 +0000 Subject: [PATCH] Spirit: Added missing namespace qualification [SVN r60775] --- example/qi/display_attribute_type.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/qi/display_attribute_type.hpp b/example/qi/display_attribute_type.hpp index e1eff1dfc..84c2245d6 100644 --- a/example/qi/display_attribute_type.hpp +++ b/example/qi/display_attribute_type.hpp @@ -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::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::type type; os << typeid(type).name() << std::endl;