3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-04 09:25:15 +00:00

fixes to build warnings

This commit is contained in:
Nikolaj Bjorner 2024-09-30 08:23:31 -07:00
parent 2ac6f8bb06
commit 826835fd7c
21 changed files with 20 additions and 65 deletions

View file

@ -902,7 +902,6 @@ protected:
unsigned arg_idx = 0;
tok = m_lexer->next_token();
while (tok != TK_EOS && tok != TK_ERROR) {
symbol alias;
sort* s = nullptr;
if(!f) {
@ -939,7 +938,6 @@ protected:
}
s = f->get_domain(arg_idx);
symbol var_symbol;
tok = parse_arg(tok, s, args);
}
@ -1067,7 +1065,7 @@ protected:
bool read_line(std::istream& strm, std::string& line) {
line.clear();
char ch = strm.get();
int ch = strm.get();
while (ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r') {
ch = strm.get();
}