Add some more trailing commas

This commit is contained in:
Rangi42
2024-03-04 22:53:11 -05:00
parent e74073e480
commit 74539f08ba
4 changed files with 22 additions and 15 deletions

View File

@@ -41,9 +41,10 @@ static void initFreeSpace() {
for (enum SectionType type : EnumSeq(SECTTYPE_INVALID)) {
memory[type].resize(nbbanks(type));
for (std::deque<FreeSpace> &bankMem : memory[type]) {
bankMem.push_back(
{.address = sectionTypeInfo[type].startAddr, .size = sectionTypeInfo[type].size}
);
bankMem.push_back({
.address = sectionTypeInfo[type].startAddr,
.size = sectionTypeInfo[type].size,
});
}
}
}