GP-2010 updated to use preferred root class folder and removed code that

replaced other class structs
This commit is contained in:
ghidra007
2022-05-13 22:47:22 +00:00
parent d7fc209657
commit 37f87c4874
8 changed files with 28 additions and 248 deletions

View File

@@ -76,13 +76,12 @@ public class RTTIGccClassRecoverer extends RTTIClassRecoverer {
public RTTIGccClassRecoverer(Program program, ProgramLocation location, PluginTool tool,
FlatProgramAPI api, boolean createBookmarks, boolean useShortTemplates,
boolean nameVfunctions, boolean isDwarfLoaded, boolean replaceExistingClassStructures,
boolean nameVfunctions, boolean isDwarfLoaded,
TaskMonitor monitor) throws Exception {
super(program, location, tool, api, createBookmarks, useShortTemplates, nameVfunctions,
replaceExistingClassStructures, isDwarfLoaded, monitor);
isDwarfLoaded, monitor);
this.isDwarfLoaded = isDwarfLoaded;
this.replaceClassStructs = replaceExistingClassStructures;
}
@Override