From f85d3f79c0dcb4a521102b30de5e1b23e69c3a28 Mon Sep 17 00:00:00 2001 From: jez <> Date: Tue, 1 Aug 2006 18:02:19 +0000 Subject: [PATCH] PrimaryExpr - replaced use of inner_node_d with two discard_node_d. This appears to be a regression in Boost 1.33.1, because it worked in Boost 1.32. Might be it was wrong before and has now been fixed and my usage was incorrect. --- XPath/impl/xpath_grammar.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XPath/impl/xpath_grammar.hpp b/XPath/impl/xpath_grammar.hpp index 6c4a7ed0..58327452 100644 --- a/XPath/impl/xpath_grammar.hpp +++ b/XPath/impl/xpath_grammar.hpp @@ -75,7 +75,7 @@ struct xpath_grammar_definition (VariableReference | Number | FunctionCall - | inner_node_d[LeftBracket >> S >> Expr >> S >> RightBracket] + | discard_node_d[LeftBracket] >> S >> Expr >> S >> discard_node_d[RightBracket] | Literal) >> discard_node_d[S];