mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
[257449] - fixed isMax and isZero
This commit is contained in:
parent
d5b0e1f317
commit
b0c1b22007
1 changed files with 2 additions and 2 deletions
|
@ -100,11 +100,11 @@ public class Addr64 implements IAddress {
|
|||
}
|
||||
|
||||
public boolean isMax() {
|
||||
return address.equals(MAX);
|
||||
return address.equals(MAX.getValue());
|
||||
}
|
||||
|
||||
public boolean isZero() {
|
||||
return address.equals(ZERO);
|
||||
return address.equals(ZERO.getValue());
|
||||
}
|
||||
|
||||
public BigInteger getValue() {
|
||||
|
|
Loading…
Add table
Reference in a new issue