summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/SharedCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'view/sharedcache/core/SharedCache.h')
-rw-r--r--view/sharedcache/core/SharedCache.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/view/sharedcache/core/SharedCache.h b/view/sharedcache/core/SharedCache.h
index 58f1f38c..010dff10 100644
--- a/view/sharedcache/core/SharedCache.h
+++ b/view/sharedcache/core/SharedCache.h
@@ -10,12 +10,13 @@
struct CacheSymbol
{
BNSymbolType type;
+ BNSymbolBinding binding = NoBinding;
uint64_t address;
std::string name;
CacheSymbol() = default;
- CacheSymbol(BNSymbolType type, uint64_t address, std::string name) :
- type(type), address(address), name(std::move(name))
+ CacheSymbol(BNSymbolType type, BNSymbolBinding binding, uint64_t address, std::string name) :
+ type(type), binding(binding), address(address), name(std::move(name))
{}
~CacheSymbol() = default;