3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

sometimes comments are worth reading

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-06-19 10:43:51 -07:00
parent 9b6a99794b
commit 2456513053

View file

@ -367,8 +367,8 @@ void proto_model::complete_partial_funcs(bool use_fresh) {
// m_func_decls may be "expanded" when we invoke get_some_value.
// So, we must not use iterators to traverse it.
for (func_decl* f : m_func_decls) {
complete_partial_func(f, use_fresh);
for (unsigned i = 0; i < m_func_decls.size(); ++i) {
complete_partial_func(m_func_decls.get(i), use_fresh);
}
}