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

fix build warnings

This commit is contained in:
Nikolaj Bjorner 2024-09-30 15:51:48 -07:00
parent 551cc53a2f
commit 86b97186b0
2 changed files with 11 additions and 17 deletions

View file

@ -228,20 +228,20 @@ public:
class dlexer { class dlexer {
std::istream* m_input; std::istream* m_input = nullptr;
char_reader* m_reader; char_reader* m_reader = nullptr;
char m_prev_char; int m_prev_char = 0;
char m_curr_char; int m_curr_char = 0;
int m_line; int m_line = 1;
int m_pos; int m_pos = 0;
int m_tok_pos; int m_tok_pos = 0;
string_buffer<> m_buffer; string_buffer<> m_buffer;
reserved_symbols m_reserved_symbols; reserved_symbols m_reserved_symbols;
public: public:
//when parsing domains, we want '.' character to be allowed in IDs, but elsewhere //when parsing domains, we want '.' character to be allowed in IDs, but elsewhere
//we don't (because of the "y." in rules like "P(x,y):-x=y.") //we don't (because of the "y." in rules like "P(x,y):-x=y.")
bool m_parsing_domains; bool m_parsing_domains = false;
bool eos() const { bool eos() const {
return m_curr_char == EOF; return m_curr_char == EOF;
@ -267,15 +267,7 @@ public:
next(); next();
} }
dlexer(): dlexer() {
m_input(nullptr),
m_reader(nullptr),
m_prev_char(0),
m_curr_char(0),
m_line(1),
m_pos(0),
m_tok_pos(0),
m_parsing_domains(false) {
} }
void set_stream(std::istream* s, char_reader* r) { void set_stream(std::istream* s, char_reader* r) {

View file

@ -4089,6 +4089,7 @@ namespace smt {
expr_ref_vector arrangement_disjunction(mgr); expr_ref_vector arrangement_disjunction(mgr);
int pos = 1; int pos = 1;
(void)pos;
for (unsigned int i = 0; i <= strValue.length(); i++) { for (unsigned int i = 0; i <= strValue.length(); i++) {
zstring part1Str = strValue.extract(0, i); zstring part1Str = strValue.extract(0, i);
zstring part2Str = strValue.extract(i, strValue.length() - i); zstring part2Str = strValue.extract(i, strValue.length() - i);
@ -4522,6 +4523,7 @@ namespace smt {
expr_ref_vector arrangement_disjunction(mgr); expr_ref_vector arrangement_disjunction(mgr);
int pos = 1; int pos = 1;
(void)pos;
if (!avoidLoopCut || !has_self_cut(m, y)) { if (!avoidLoopCut || !has_self_cut(m, y)) {
expr_ref_vector and_item(mgr); expr_ref_vector and_item(mgr);