summaryrefslogtreecommitdiff
path: root/binaryview.cpp
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2019-10-17 11:04:48 -0400
committerBrian Potchik <brian@vector35.com>2019-10-17 11:04:48 -0400
commit4e9e0fb72d229110c0b3ccc57a4e6ae2e9396961 (patch)
tree7682839c5bb4128064b8325849601b3acada556a /binaryview.cpp
parent39079e021bb38612ca8d49826ee64f7b6ee84cdd (diff)
Fix warning.
Diffstat (limited to 'binaryview.cpp')
-rw-r--r--binaryview.cpp2
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;
}
}