mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-30 16:03:17 +00:00
Renamed SIZE() to GetSize() because of name collision on Win32
This commit is contained in:
parent
c7f5aab625
commit
4569a747f8
48 changed files with 447 additions and 447 deletions
|
@ -112,7 +112,7 @@ struct PluginPass : public Pass {
|
|||
log("\n");
|
||||
int max_alias_len = 1;
|
||||
for (auto &it : loaded_plugin_aliases)
|
||||
max_alias_len = std::max(max_alias_len, SIZE(it.first));
|
||||
max_alias_len = std::max(max_alias_len, GetSize(it.first));
|
||||
for (auto &it : loaded_plugin_aliases)
|
||||
log("Alias: %-*s %s\n", max_alias_len, it.first.c_str(), it.second.c_str());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue