- ::getLimit does not need to manually skip TERMINATOR nodes.
This commit is contained in:
Paul Beckingham 2014-08-17 15:53:16 -04:00
parent ea7afa112b
commit a1ba3df7fb

View file

@ -798,10 +798,6 @@ std::string Parser::getLimit () const
std::vector <Tree*>::iterator i;
for (i = nodes.begin (); i != nodes.end (); ++i)
{
// Parser override operator.
if ((*i)->attribute ("raw") == "--")
break;
if ((*i)->hasTag ("PSEUDO") &&
(*i)->attribute ("name") == "limit")
{