From a1ba3df7fbfdbcc248c7a8d2c8c5856951a61f5c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 17 Aug 2014 15:53:16 -0400 Subject: [PATCH] Parser - ::getLimit does not need to manually skip TERMINATOR nodes. --- src/Parser.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Parser.cpp b/src/Parser.cpp index d8f0367c7..2bcf94035 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -798,10 +798,6 @@ std::string Parser::getLimit () const std::vector ::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") {