3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-06 03:10:25 +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

@ -198,10 +198,10 @@ namespace smt {
watch_list* m_var_watch;
ineq* m_ineq;
var_info(): m_var_watch(0), m_ineq(0)
var_info(): m_var_watch(nullptr), m_ineq(nullptr)
{
m_lit_watch[0] = 0;
m_lit_watch[1] = 0;
m_lit_watch[0] = nullptr;
m_lit_watch[1] = nullptr;
}
void reset() {