sync with cvs tree

This commit is contained in:
jez 2006-08-04 09:51:48 +00:00
parent 0200ed6e70
commit febb67170c
2 changed files with 0 additions and 2 deletions

View file

@ -116,7 +116,6 @@ struct xpath_grammar_definition
| discard_node_d[ch_p('\'')] >> token_node_d[*~ch_p('\'')] >> discard_node_d[ch_p('\'')];
Number = token_node_d[ch_p('.') >> Digits | Digits >> !('.' >> *Digits)];
Digits = token_node_d[+digit_p];
// [32] Operator not actually used
// [33] OperatorName not actually used
// [34], [35], [36], [37], [38], [39]

View file

@ -127,7 +127,6 @@ private:
ast = (this->*parser)(xpath);
if(!ast.full)
throw SyntaxException(string_adaptor::asStdString(xpath));
//XPath::dump(ast.trees.begin(), 0);
impl::CompilationContext<string_type, string_adaptor> context(*this, getNamespaceContext(), getFunctionResolver());
return XPathExpressionPtr<string_type, string_adaptor>(compile_with_factory(ast.trees.begin(), context, factory));