Skip to content

Commit

Permalink
spacer: trying to make C++ happy
Browse files Browse the repository at this point in the history
  • Loading branch information
agurfinkel committed Sep 1, 2022
1 parent f2afb36 commit eb2b95e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/muz/spacer/spacer_expand_bnd_generalizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ lemma_expand_bnd_generalizer::lemma_expand_bnd_generalizer(context &ctx)
// remove duplicates
std::sort(m_values.begin(), m_values.end());
auto last = std::unique(m_values.begin(), m_values.end());
for (unsigned i = 0, sz = std::distance(last, m_values.end()); i < sz; ++i)
for (size_t i = 0, sz = std::distance(last, m_values.end()); i < sz; ++i)
m_values.pop_back();
}

Expand Down

0 comments on commit eb2b95e

Please sign in to comment.