Print symbol namespace paths in context

This commit is contained in:
caheckman 2020-06-16 15:26:49 -04:00
parent a027a5cdd8
commit f7a8e264aa
11 changed files with 196 additions and 72 deletions

View file

@ -18,10 +18,10 @@
/// \param g is the Architecture and connection to the Ghidra client
ScopeGhidra::ScopeGhidra(ArchitectureGhidra *g)
: Scope("",g)
: Scope("",g,this)
{
ghidra = g;
cache = new ScopeInternal("",g);
cache = new ScopeInternal("",g,this);
cacheDirty = false;
}