- PSEUDO args are no longer considered FILTER.
This commit is contained in:
Paul Beckingham 2014-10-23 00:45:39 -04:00
parent 7f3cc3897e
commit 5d790a07de

View file

@ -332,8 +332,7 @@ const std::string CLI::getFilter ()
std::vector <A>::const_iterator a;
for (a = _args.begin (); a != _args.end (); ++a)
{
if (a->hasTag ("FILTER") &&
! a->hasTag ("PSEUDO"))
if (a->hasTag ("FILTER"))
{
if (filter != "")
filter += ' ';
@ -647,7 +646,6 @@ void CLI::desugarAttributes ()
A left ("argUDA", name);
left.attribute ("name", canonical);
left.tag ("PSEUDO");
left.tag ("FILTER");
reconstructed.push_back (left);
found = true;
}