summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/DSCView.h
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-02-11 21:56:13 -0500
committerMason Reed <mason@vector35.com>2025-02-12 18:43:02 -0500
commitc5edc003b1c0667c936c2ba3a278821da28c3b42 (patch)
treeaf7e9737853ef54a95c4b253205d5327a9f6d299 /view/sharedcache/core/DSCView.h
parentacea6d4a7bb2cef1f84c68c3687331534fe1ede1 (diff)
[SharedCache] Fix misc compiler warnings
These are from clang so there are still a bunch of warnings on GCC and MSVC
Diffstat (limited to 'view/sharedcache/core/DSCView.h')
-rw-r--r--view/sharedcache/core/DSCView.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/sharedcache/core/DSCView.h b/view/sharedcache/core/DSCView.h
index bde2f7c2..d47dc179 100644
--- a/view/sharedcache/core/DSCView.h
+++ b/view/sharedcache/core/DSCView.h
@@ -9,7 +9,7 @@
class DSCView : public BinaryNinja::BinaryView {
- bool m_parseOnly;
+ [[maybe_unused]] bool m_parseOnly;
public:
DSCView(const std::string &typeName, BinaryView *data, bool parseOnly = false);