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:
parent
90b1b07af4
commit
dbc1a84d6a
1 changed files with 1 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue