mirror of
https://github.com/Z3Prover/z3
synced 2025-05-06 07:15:47 +00:00
fixed some address dependencies
This commit is contained in:
parent
bb61f17989
commit
3764064e98
7 changed files with 33 additions and 3 deletions
|
@ -140,7 +140,8 @@ namespace std {
|
|||
class less<ast_r> {
|
||||
public:
|
||||
bool operator()(const ast_r &s, const ast_r &t) const {
|
||||
return s.raw() < t.raw(); // s.raw()->get_id() < t.raw()->get_id();
|
||||
// return s.raw() < t.raw();
|
||||
return s.raw()->get_id() < t.raw()->get_id();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue