mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-04 02:10:24 +00:00
stoi -> atoi
This commit is contained in:
parent
ee7c970367
commit
48d0f99406
41 changed files with 121 additions and 121 deletions
|
@ -79,7 +79,7 @@ struct TeePass : public Pass {
|
|||
continue;
|
||||
}
|
||||
if (GetSize(args[argidx]) >= 2 && (args[argidx][0] == '-' || args[argidx][0] == '+') && args[argidx][1] >= '0' && args[argidx][1] <= '9') {
|
||||
log_verbose_level += std::stoi(args[argidx]);
|
||||
log_verbose_level += atoi(args[argidx].c_str());
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue