3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-12 17:06:14 +00:00
This commit is contained in:
Nikolaj Bjorner 2023-03-31 03:25:20 -07:00
parent b386b84f34
commit 996e5b1755

View file

@ -78,7 +78,7 @@ zstring::zstring(char const* s) {
m_buffer.push_back(ch); m_buffer.push_back(ch);
} }
else { else {
m_buffer.push_back(*s); m_buffer.push_back((unsigned char)*s);
++s; ++s;
} }
} }