change to string for consistency

This commit is contained in:
Stan Lee 2026-04-28 16:20:00 -07:00
parent 6f5b52807c
commit 48329bd36a
1 changed files with 1 additions and 1 deletions

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);
}