mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
fix a few compiler warnings
Signed-off-by: Nuno Lopes <a-nlopes@microsoft.com>
This commit is contained in:
parent
45bfcda16c
commit
61d67dc2de
2 changed files with 1 additions and 3 deletions
|
@ -62,8 +62,6 @@ namespace datalog {
|
||||||
dealloc(m_elems);
|
dealloc(m_elems);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool can_swap() const { return true; }
|
|
||||||
|
|
||||||
virtual void swap(relation_base& other) {
|
virtual void swap(relation_base& other) {
|
||||||
vector_relation& o = dynamic_cast<vector_relation&>(other);
|
vector_relation& o = dynamic_cast<vector_relation&>(other);
|
||||||
if (&o == this) return;
|
if (&o == this) return;
|
||||||
|
|
|
@ -73,7 +73,7 @@ bool is_debug_enabled(const char * tag);
|
||||||
UNREACHABLE(); \
|
UNREACHABLE(); \
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
#define VERIFY(_x_) (_x_)
|
#define VERIFY(_x_) (void)(_x_)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MAKE_NAME2(LINE) zofty_ ## LINE
|
#define MAKE_NAME2(LINE) zofty_ ## LINE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue