We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8cc330d + bce1b3b commit 3fff816Copy full SHA for 3fff816
src/main/java/cppclassanalyzer/vs/VsVtableModel.java
@@ -70,9 +70,9 @@ public Address[] getTableAddresses() {
70
}
71
72
private Function[] getFunctions(VfTableModel vftable) {
73
- List<Function> functions = new ArrayList<>(vftable.getCount());
+ List<Function> functions = new ArrayList<>(vftable.getElementCount());
74
FunctionManager manager = program.getFunctionManager();
75
- for (int i = 0; i < vftable.getCount(); i++) {
+ for (int i = 0; i < vftable.getElementCount(); i++) {
76
Function f = manager.getFunctionAt(vftable.getVirtualFunctionPointer(i));
77
if (f == null) {
78
break;
0 commit comments