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.
This commit is contained in:
jez 2006-08-01 18:02:19 +00:00
parent 875bfe4a58
commit f85d3f79c0

View file

@ -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];