mirror of
https://github.com/Z3Prover/z3
synced 2025-08-06 03:10:25 +00:00
Use nullptr.
This commit is contained in:
parent
f01328c65f
commit
76eb7b9ede
625 changed files with 4639 additions and 4639 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue