Revert "segmath: fixup inverted logic for --exclude_known"

Does not work as intended.  Remove to avoid confusion.
This reverts commit 80d8d6d8d3bc5e7ad5c72c9998777b5e0590ec30.

Signed-off-by: Rick Altherr <kc8apf@kc8apf.net>
Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
Rick Altherr 2017-12-14 11:10:18 -08:00 committed by Tim 'mithro' Ansell
parent d2a4cbfd75
commit 76210b02c5
1 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ void read_input(std::istream &f, std::string filename)
f >> token;
if (exclude_bits.find(token) != exclude_bits.end())
if (exclude_bits.find(token) == exclude_bits.end())
continue;
if (bit_ids.count(token) == 0) {
@ -196,7 +196,7 @@ void read_input(std::istream &f, std::string filename)
f >> token;
if (exclude_tags.find(token) != exclude_tags.end()) {
if (exclude_tags.find(token) == exclude_tags.end()) {
// Consume the rest of the line.
f >> token;
continue;