| 494 | return true; |
| 495 | } |
| 496 | void print() { |
| 497 | printf("Mdebug Info\n"); |
| 498 | for (const auto& file : files_) { |
| 499 | printf(" File %s\n", file.filename.c_str()); |
| 500 | for (const auto& symbol : file.symbols) { |
| 501 | printf(" %s @ 0x%08X (size 0x%08X)\n", symbol.name.c_str(), symbol.address, symbol.size); |
| 502 | } |
| 503 | } |
| 504 | } |
| 505 | bool good() { |
| 506 | return good_; |
| 507 | } |
nothing calls this directly
no outgoing calls
no test coverage detected