3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-17 07:56:24 +00:00

remove a few useless dynamic casts

This commit is contained in:
Nuno Lopes 2025-09-13 21:06:55 +01:00
parent f0c788581a
commit c350ddf990
8 changed files with 18 additions and 28 deletions

View file

@ -272,7 +272,7 @@ public:
for (dependent_expr const& f : m_fmls)
result->m_fmls.push_back(dependent_expr(tr, f));
if (m_mc)
result->m_mc = dynamic_cast<generic_model_converter*>(m_mc->translate(tr));
result->m_mc = m_mc->translate(tr);
// copy m_preprocess_state?
return result;