3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

fix compiler warnings

This commit is contained in:
Nuno Lopes 2022-10-12 10:02:21 +01:00
parent 8ad480ab59
commit a7f018aa03
6 changed files with 4 additions and 16 deletions

View file

@ -29,12 +29,12 @@ namespace euf {
class ackerman {
struct inference : dll_base<inference>{
bool is_cc;
expr* a, *b, *c;
unsigned m_count{ 0 };
inference():is_cc(false), a(nullptr), b(nullptr), c(nullptr) {}
inference(app* a, app* b):is_cc(true), a(a), b(b), c(nullptr) {}
inference(expr* a, expr* b, expr* c):is_cc(false), a(a), b(b), c(c) {}
bool is_cc;
inference(): a(nullptr), b(nullptr), c(nullptr), is_cc(false) {}
inference(app* a, app* b): a(a), b(b), c(nullptr), is_cc(true) {}
inference(expr* a, expr* b, expr* c): a(a), b(b), c(c), is_cc(false) {}
};
struct inference_eq {