fix bmap binding generation

This commit is contained in:
2023-11-03 10:43:06 +08:00
parent 52c2d3f7e0
commit d754b2fb44
3 changed files with 32 additions and 5 deletions

View File

@ -73,7 +73,7 @@ public class VariableType {
}
public VariableType getPointerOfThis() {
return new VariableType(mBaseType, mPointerLevel);
return new VariableType(mBaseType, mPointerLevel + 1);
}
}