mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 12:11:23 +00:00
Use nullptr.
This commit is contained in:
parent
808d2eb60f
commit
cdfc19a885
44 changed files with 98 additions and 98 deletions
|
@ -36,7 +36,7 @@ class lia2card_tactic : public tactic {
|
|||
expr* m_expr;
|
||||
bound(unsigned lo, unsigned hi, expr* b):
|
||||
m_lo(lo), m_hi(hi), m_expr(b) {}
|
||||
bound(): m_lo(0), m_hi(0), m_expr(0) {}
|
||||
bound(): m_lo(0), m_hi(0), m_expr(nullptr) {}
|
||||
};
|
||||
|
||||
struct lia_rewriter_cfg : public default_rewriter_cfg {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue