3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 04:03:39 +00:00

temper warning messages from uninitalized pointers

This commit is contained in:
Nikolaj Bjorner 2024-04-30 17:00:49 -07:00
parent 4c070f9e76
commit b0222cbdaa

View file

@ -472,7 +472,7 @@ public:
that was already in the table. that was already in the table.
*/ */
data const & insert_if_not_there(data const & e) { data const & insert_if_not_there(data const & e) {
entry * et; entry * et = nullptr;
insert_if_not_there_core(e, et); insert_if_not_there_core(e, et);
return et->get_data(); return et->get_data();
} }
@ -482,7 +482,7 @@ public:
Return the entry that contains e. Return the entry that contains e.
*/ */
entry * insert_if_not_there2(data const & e) { entry * insert_if_not_there2(data const & e) {
entry * et; entry * et = nullptr;
insert_if_not_there_core(e, et); insert_if_not_there_core(e, et);
return et; return et;
} }