mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Parser
- ::findMissingOperators scans all nodes.
This commit is contained in:
parent
1b60478bc7
commit
6920b022b2
1 changed files with 2 additions and 2 deletions
|
@ -1696,7 +1696,7 @@ void Parser::findMissingOperators ()
|
|||
bool Parser::insertOr ()
|
||||
{
|
||||
std::vector <Tree*> nodes;
|
||||
collect (nodes, false);
|
||||
collect (nodes, true);
|
||||
std::vector <Tree*>::iterator prev = nodes.begin ();
|
||||
std::vector <Tree*>::iterator i;
|
||||
for (i = nodes.begin (); i != nodes.end (); ++i)
|
||||
|
@ -1735,7 +1735,7 @@ bool Parser::insertOr ()
|
|||
bool Parser::insertAnd ()
|
||||
{
|
||||
std::vector <Tree*> nodes;
|
||||
collect (nodes, false);
|
||||
collect (nodes, true);
|
||||
std::vector <Tree*>::iterator prev = nodes.begin ();
|
||||
std::vector <Tree*>::iterator i;
|
||||
for (i = nodes.begin (); i != nodes.end (); ++i)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue