3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-09-30 05:09:04 +00:00

Remove some unnecessary .c_str() calls to the result of unescape_id()

This commit is contained in:
Robert O'Callahan 2025-09-16 23:12:14 +00:00
parent d276529d46
commit a1141f1a4c
3 changed files with 20 additions and 20 deletions

View file

@ -1012,7 +1012,7 @@ struct XAigerWriter : AigerWriter {
for (auto box : minfo.found_blackboxes) {
log_debug(" - %s.%s (type %s): ", cursor.path().c_str(),
RTLIL::unescape_id(box->name).c_str(),
RTLIL::unescape_id(box->name),
log_id(box->type));
Module *box_module = design->module(box->type), *box_derived;