move domSource to Eval, as it's an Eval source

This commit is contained in:
Dustin J. Mitchell
2021-12-18 02:06:31 +00:00
committed by Tomas Babej
parent 6e9ad1048d
commit db26a28bf9
4 changed files with 21 additions and 19 deletions

View File

@@ -39,18 +39,6 @@
// Context for DOM evaluations
const Task* contextTask = NULL;
////////////////////////////////////////////////////////////////////////////////
bool domSource (const std::string& identifier, Variant& value)
{
if (getDOM (identifier, contextTask, value))
{
value.source (identifier);
return true;
}
return false;
}
////////////////////////////////////////////////////////////////////////////////
// Take an input set of tasks and filter into a subset.
void Filter::subset (const std::vector <Task>& input, std::vector <Task>& output)