| 149 | std::string name; |
| 150 | |
| 151 | DataSymbol(uint32_t vram, std::string&& name) : vram(vram), name(std::move(name)) {} |
| 152 | }; |
| 153 | |
| 154 | using DataSymbolMap = std::unordered_map<uint16_t, std::vector<DataSymbol>>; |
nothing calls this directly
no outgoing calls
no test coverage detected