mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-30 13:19:05 +00:00
Remove .c_str() calls from parameters to log_header()
This commit is contained in:
parent
5ac6858f26
commit
d1fd6de6da
7 changed files with 7 additions and 7 deletions
|
@ -163,7 +163,7 @@ struct RpcModule : RTLIL::Module {
|
|||
stripped_name = stripped_name.substr(9);
|
||||
log_assert(stripped_name[0] == '\\');
|
||||
|
||||
log_header(design, "Executing RPC frontend `%s' for module `%s'.\n", server->name.c_str(), stripped_name.c_str());
|
||||
log_header(design, "Executing RPC frontend `%s' for module `%s'.\n", server->name, stripped_name);
|
||||
|
||||
std::string parameter_info;
|
||||
for (auto ¶m : parameters) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue