diff options
| author | Mason Reed <mason@vector35.com> | 2025-02-11 21:56:13 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-02-12 18:43:02 -0500 |
| commit | c5edc003b1c0667c936c2ba3a278821da28c3b42 (patch) | |
| tree | af7e9737853ef54a95c4b253205d5327a9f6d299 /view/sharedcache/core/SharedCache.h | |
| parent | acea6d4a7bb2cef1f84c68c3687331534fe1ede1 (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/SharedCache.h')
| -rw-r--r-- | view/sharedcache/core/SharedCache.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/sharedcache/core/SharedCache.h b/view/sharedcache/core/SharedCache.h index 19445dd9..54c63bb3 100644 --- a/view/sharedcache/core/SharedCache.h +++ b/view/sharedcache/core/SharedCache.h @@ -578,12 +578,13 @@ namespace SharedCacheCore { bool m_metadataValid = false; /* VIEWSTATE END -- NOTHING PAST THIS IS SERIALIZED */ - std::shared_ptr<ViewSpecificState> m_viewSpecificState; /* API VIEW START */ BinaryNinja::Ref<BinaryNinja::BinaryView> m_dscView; /* API VIEW END */ + std::shared_ptr<ViewSpecificState> m_viewSpecificState; + private: void PerformInitialLoad(); void DeserializeFromRawView(); |
