Fix the boolean.

Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
This commit is contained in:
YRabbit 2021-07-08 07:09:30 +10:00
parent d613626ab9
commit 881fd97c5a

View File

@ -520,7 +520,7 @@ void Arch::read_cst(std::istream &in)
std::string attr = "&";
attr += match[2];
boost::algorithm::to_upper(attr);
it->second->attrs[id(attr)] = 0;
it->second->attrs[id(attr)] = 1;
}
}
}