aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/nlutmap.cc
diff options
context:
space:
mode:
Diffstat (limited to 'passes/techmap/nlutmap.cc')
-rw-r--r--passes/techmap/nlutmap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/nlutmap.cc b/passes/techmap/nlutmap.cc
index cc765d89c..9ac39ed05 100644
--- a/passes/techmap/nlutmap.cc
+++ b/passes/techmap/nlutmap.cc
@@ -163,7 +163,7 @@ struct NlutmapPass : public Pass {
vector<string> tokens = split_tokens(args[++argidx], ",");
config.luts.clear();
for (auto &token : tokens)
- config.luts.push_back(atoi(token.c_str()));
+ config.luts.push_back(std::stoi(token));
continue;
}
if (args[argidx] == "-assert") {