mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Expressions
- Implemented !~ operator. - Hid debug output for now.
This commit is contained in:
parent
1bf6c8a9fa
commit
aa8d872466
2 changed files with 68 additions and 25 deletions
|
@ -28,6 +28,7 @@
|
|||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <Expression.h>
|
||||
#include <Timer.h>
|
||||
#include <Command.h>
|
||||
|
||||
#include <CmdAdd.h>
|
||||
|
@ -253,6 +254,8 @@ bool Command::displays_id () const
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
void Command::filter (std::vector <Task>& input, std::vector <Task>& output)
|
||||
{
|
||||
Timer timer ("Command::filter");
|
||||
|
||||
Arguments f = context.args.extract_read_only_filter ();
|
||||
if (f.size ())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue