CmdCalc: Eliminated namedDates

This commit is contained in:
Paul Beckingham 2017-03-05 09:31:50 -05:00
parent 06a78e1aff
commit d8526a388d

View file

@ -28,7 +28,6 @@
#include <CmdCalc.h> #include <CmdCalc.h>
#include <Filter.h> #include <Filter.h>
#include <Eval.h> #include <Eval.h>
#include <Dates.h>
#include <main.h> #include <main.h>
#include <i18n.h> #include <i18n.h>
@ -61,7 +60,6 @@ int CmdCalc::execute (std::string& output)
// Create an evaluator with DOM access. // Create an evaluator with DOM access.
Eval e; Eval e;
e.addSource (domSource); e.addSource (domSource);
e.addSource (namedDates);
e.debug (context.config.getBoolean ("debug")); e.debug (context.config.getBoolean ("debug"));
// Compile all the args into one expression. // Compile all the args into one expression.