mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 13:58:45 +00:00
fix build
This commit is contained in:
parent
50873c8094
commit
d13f1310a7
|
@ -317,7 +317,7 @@ namespace dd {
|
|||
inline pdd operator*(int x, pdd const& b) { return b * rational(x); }
|
||||
inline pdd operator*(pdd const& b, int x) { return b * rational(x); }
|
||||
|
||||
inline pdd operator+(rational const& r, pdd& b) { return b + r; }
|
||||
inline pdd operator+(rational const& r, const pdd& b) { return b + r; }
|
||||
inline pdd operator+(int x, pdd const& b) { return b + rational(x); }
|
||||
inline pdd operator+(pdd const& b, int x) { return b + rational(x); }
|
||||
|
||||
|
|
Loading…
Reference in a new issue