diff options
| author | Brian Potchik <brian@vector35.com> | 2019-10-17 11:04:48 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2019-10-17 11:04:48 -0400 |
| commit | 4e9e0fb72d229110c0b3ccc57a4e6ae2e9396961 (patch) | |
| tree | 7682839c5bb4128064b8325849601b3acada556a /binaryview.cpp | |
| parent | 39079e021bb38612ca8d49826ee64f7b6ee84cdd (diff) | |
Fix warning.
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index 5cec7b10..51e80553 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -545,6 +545,8 @@ bool TagReference::operator==(const TagReference& other) const return func == other.func; case DataTagReference: return addr == other.addr; + default: + return false; } } |
