3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

fixes issue #143 and memory leak on theory plugin setup

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-06-26 09:03:56 +02:00
parent 47da717947
commit e81dc5a0a0
4 changed files with 12 additions and 10 deletions

View file

@ -50,7 +50,7 @@ public class FuncDecl extends AST
FuncDecl casted = (FuncDecl) o;
if (casted == null)
return false;
return this == casted;
return this.getNativeObject() == casted.getNativeObject();
}
/**