3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-04 22:36:10 +00:00

Use nullptr.

This commit is contained in:
Bruce Mitchener 2018-02-12 14:05:55 +07:00
parent f01328c65f
commit 76eb7b9ede
625 changed files with 4639 additions and 4639 deletions

View file

@ -120,7 +120,7 @@ namespace datalog {
void add_fact(const table_fact & f) override;
void remove_fact(const table_element* fact) override;
bool contains_fact(const table_fact & f) const override;
table_base * complement(func_decl* p, const table_element * func_columns = 0) const override;
table_base * complement(func_decl* p, const table_element * func_columns = nullptr) const override;
table_base * clone() const override;
iterator begin() const override { SASSERT(well_formed()); return m_tocheck->begin(); }