mirror of
https://github.com/Z3Prover/z3
synced 2025-06-08 15:13:23 +00:00
fixed warnings on Win64
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
8015d8b79a
commit
7f210d55be
3 changed files with 4 additions and 4 deletions
|
@ -165,7 +165,7 @@ public:
|
|||
if (*name == ':')
|
||||
name++;
|
||||
std::string tmp = name;
|
||||
unsigned n = tmp.size();
|
||||
unsigned n = static_cast<unsigned>(tmp.size());
|
||||
for (unsigned i = 0; i < n; i++) {
|
||||
if (tmp[i] >= 'A' && tmp[i] <= 'Z')
|
||||
tmp[i] = tmp[i] - 'A' + 'a';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue