3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 10:55:50 +00:00

use signed character type declarations for cross platform compilation. Fixes issue #210

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-09-05 16:30:58 -07:00
parent 87396bd648
commit 4be3926daa
4 changed files with 5 additions and 4 deletions

View file

@ -295,7 +295,7 @@ namespace smt2 {
scanner::token scanner::scan() {
while (true) {
char c = curr();
signed char c = curr();
m_pos = m_spos;
switch (m_normalized[(unsigned char) c]) {
case ' ':