3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

fix warning with MSVC++ 64

This commit is contained in:
Nuno Lopes 2015-12-15 18:36:01 +00:00
parent 90b1b07af4
commit dbc1a84d6a

View file

@ -250,7 +250,7 @@ bool theory_seq::find_branch_candidate(expr* l, ptr_vector<expr> const& rs) {
}
zstring s;
if (m_util.str.is_string(rs[j], s)) {
for (size_t k = 1; k < s.length(); ++k) {
for (unsigned k = 1; k < s.length(); ++k) {
v = m_util.str.mk_string(s.extract(0, k));
if (v0) v = m_util.str.mk_concat(v0, v);
if (assume_equality(l, v)) {