- Placed filter parentheses around only non-trivial filters.
This commit is contained in:
Paul Beckingham 2014-10-25 16:16:56 -04:00
parent a780bd0193
commit 725682a058

View file

@ -351,9 +351,11 @@ const std::string CLI::getFilter ()
filter += term;
}
}
filter = "( " + filter + " )";
}
return "( " + filter + " )";
return filter;
}
////////////////////////////////////////////////////////////////////////////////