3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-15 03:35:40 +00:00

change to string for consistency

This commit is contained in:
Stan Lee 2026-04-28 16:20:00 -07:00
parent 6f5b52807c
commit 48329bd36a

View file

@ -3928,7 +3928,7 @@ struct VerificPass : public Pass {
if (GetSize(args) > argidx && args[argidx] == "-unignore_module") {
Set *ignored = veri_file::GetIgnoredModuleSet();
for (argidx++; argidx < GetSize(args); argidx++) {
const char *name = args[argidx].c_str();
string *name = args[argidx].c_str();
if (ignored)
ignored->Remove(name);
}