| 1 | #include "function.h" |
| 2 | |
| 3 | Function::Function(DWORD startRva, DWORD endRva, std::vector<BYTE> bytes) : startRva(startRva), endRva(endRva), bytes(bytes) {}; |
| 4 | |
| 5 | bool Function::disassemble() |
| 6 | { |
nothing calls this directly
no outgoing calls
no test coverage detected