3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-17 00:32:16 +00:00

signed char -> int, update mk_util to catch warnings on fptest, thanks to jfc

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-06-02 17:22:08 -07:00
parent 6fdef691e5
commit 51b75a132c
4 changed files with 27 additions and 24 deletions

View file

@ -76,8 +76,8 @@ private:
bool m_smt2;
bool m_bv_token;
signed char read_char();
token read_symbol(signed char ch);
int read_char();
token read_symbol(int ch);
void unread_char();
void comment(char delimiter);
token read_id(char first_char);