Type is tInt, not tUInt

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@890 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 2f91b6544d
commit 1bd764b48c
  1. 2
      jode/jode/expr/IIncOperator.java

@ -47,7 +47,7 @@ public class IIncOperator extends Operator
} }
public void updateSubTypes() { public void updateSubTypes() {
subExpressions[0].setType(type != Type.tVoid ? type : Type.tUInt); subExpressions[0].setType(type != Type.tVoid ? type : Type.tInt);
} }

Loading…
Cancel
Save