1
0
mirror of synced 2026-02-04 07:52:58 +00:00

Merge pull request #4734 from mikesinouye/verific

Fix bug when setting Verific runtime string  flags.
This commit is contained in:
Martin Povišer
2024-11-14 19:39:47 +01:00
committed by GitHub

View File

@@ -4184,7 +4184,7 @@ struct VerificPass : public Pass {
}
if (v[0] == '"') {
std::string s = v.substr(1, GetSize(v)-2);
RuntimeFlags::SetStringVar(k.c_str(), v.c_str());
RuntimeFlags::SetStringVar(k.c_str(), s.c_str());
goto check_error;
}
char *endptr;