Use std::vector for section symbols

This commit is contained in:
Rangi42
2024-02-27 12:00:34 -05:00
committed by Sylvie
parent f47ce337bf
commit dead69eb2c
4 changed files with 22 additions and 45 deletions

View File

@@ -48,8 +48,7 @@ struct Section {
std::vector<struct Patch> *patches;
// Extra info computed during linking
std::vector<struct Symbol *> *fileSymbols;
uint32_t nbSymbols;
struct Symbol **symbols;
std::vector<struct Symbol *> *symbols;
struct Section *nextu; // The next "component" of this unionized sect
};