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:
parent
87396bd648
commit
4be3926daa
4 changed files with 5 additions and 4 deletions
|
@ -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 ' ':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue