Use std::deque (iterable) for section stack

This commit is contained in:
Rangi42
2024-02-21 10:28:51 -05:00
committed by Sylvie
parent feb342804b
commit a310b659cd
4 changed files with 13 additions and 29 deletions

View File

@@ -23,7 +23,6 @@ struct Section {
uint32_t bank;
uint8_t align; // Exactly as specified in `ALIGN[]`
uint16_t alignOfs;
struct Section *next;
struct Patch *patches;
uint8_t *data;
};