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