diff options
| author | Peter LaFosse <peter@vector35.com> | 2018-09-29 22:10:02 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-09-29 22:10:02 -0400 |
| commit | c75d1b4f9d241e245d44841919300c099f2fb240 (patch) | |
| tree | d6572dde6df181ace57958c9e210f5966a7aee6d /relocationhandler.cpp | |
| parent | 7cb14d06391656391b4fa049adb3c3788d53e05b (diff) | |
Fix issue with GetNameSpace, squash warning
Diffstat (limited to 'relocationhandler.cpp')
| -rw-r--r-- | relocationhandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/relocationhandler.cpp b/relocationhandler.cpp index baceca48..ae0897dc 100644 --- a/relocationhandler.cpp +++ b/relocationhandler.cpp @@ -108,6 +108,11 @@ bool RelocationHandler::ApplyRelocation(Ref<BinaryView> view, Ref<Architecture> size_t RelocationHandler::GetOperandForExternalRelocation(const uint8_t* data, uint64_t addr, size_t length, Ref<LowLevelILFunction> il, Ref<Relocation> relocation) { + (void)data; + (void)addr; + (void)length; + (void)il; + (void)relocation; return BN_INVALID_OPERAND; } |
