3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

remove calls to removed def constructor

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-02-16 10:13:00 -08:00
parent a703cf81b1
commit b27a2aa7fc
7 changed files with 10 additions and 13 deletions

View file

@ -1542,7 +1542,7 @@ void theory_seq::add_length(expr* l) {
void theory_seq::init_length_limit_for_contains(expr* c) {
if (ctx.is_searching())
return;
expr* x, *y;
expr* x = nullptr, *y = nullptr;
VERIFY(m_util.str.is_contains(c, x, y));
unsigned min_y = m_util.str.min_length(y);
if (min_y > 0) {