Filter: Eliminated namedDates

This commit is contained in:
Paul Beckingham 2017-03-05 09:28:57 -05:00
parent d0ec6b27aa
commit 5f4a62750e

View file

@ -32,7 +32,6 @@
#include <DOM.h> #include <DOM.h>
#include <Eval.h> #include <Eval.h>
#include <Variant.h> #include <Variant.h>
#include <Dates.h>
#include <i18n.h> #include <i18n.h>
#include <format.h> #include <format.h>
#include <shared.h> #include <shared.h>
@ -74,7 +73,6 @@ void Filter::subset (const std::vector <Task>& input, std::vector <Task>& output
{ {
Eval eval; Eval eval;
eval.addSource (domSource); eval.addSource (domSource);
eval.addSource (namedDates);
// Debug output from Eval during compilation is useful. During evaluation // Debug output from Eval during compilation is useful. During evaluation
// it is mostly noise. // it is mostly noise.
@ -126,7 +124,6 @@ void Filter::subset (std::vector <Task>& output)
Eval eval; Eval eval;
eval.addSource (domSource); eval.addSource (domSource);
eval.addSource (namedDates);
// Debug output from Eval during compilation is useful. During evaluation // Debug output from Eval during compilation is useful. During evaluation
// it is mostly noise. // it is mostly noise.