| 54 | struct ModuleSection { |
| 55 | public: |
| 56 | ModuleSection(const std::string& name, uint64_t addr, uint64_t size, std::string protection) |
| 57 | : name(name), addr(addr), size(size), protection(protection) {} |
| 58 | |
| 59 | std::string name; |
| 60 | uint64_t addr; |
nothing calls this directly
no outgoing calls
no test coverage detected