3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-06 00:50:57 +00:00

Merge pull request #5894 from YosysHQ/gcc_16

Bump CI to gcc-16 and fix warnings
This commit is contained in:
Miodrag Milanović 2026-06-03 12:07:45 +00:00 committed by GitHub
commit 78e05dfb00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 additions and 5 deletions

View file

@ -275,7 +275,7 @@ struct JnyWriter
const auto _indent = gen_indent(indent_level);
bool first_port{true};
for (auto con : port_cell->connections()) {
for (auto& con : port_cell->connections()) {
if (!first_port)
f << ",\n";