3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-26 00:52:35 +00:00

Revert "Represent memory size with size_t"

This reverts commit bb5f8415af.
This commit is contained in:
Akash Levy 2025-04-04 03:20:07 -07:00
parent bb5f8415af
commit f218b5ba58
13 changed files with 35 additions and 60 deletions

View file

@ -252,7 +252,7 @@ struct JsonWriter
f << stringf("\n },\n");
f << stringf(" \"width\": %d,\n", it.second->width);
f << stringf(" \"start_offset\": %d,\n", it.second->start_offset);
f << stringf(" \"size\": %zu\n", it.second->size);
f << stringf(" \"size\": %d\n", it.second->size);
f << stringf(" }");
first = false;
}