mirror of
https://github.com/Z3Prover/z3
synced 2026-07-06 15:26:15 +00:00
fix build warnings
This commit is contained in:
parent
86737e11ea
commit
cb3d058067
19 changed files with 22 additions and 29 deletions
|
|
@ -70,7 +70,7 @@ static void test_pop() {
|
|||
TestNode* list = nullptr;
|
||||
TestNode node1(1);
|
||||
TestNode::push_to_front(list, &node1);
|
||||
TestNode* popped = TestNode::pop(list);
|
||||
[[maybe_unused]] TestNode* popped = TestNode::pop(list);
|
||||
SASSERT(popped == &node1);
|
||||
SASSERT(list == nullptr);
|
||||
SASSERT(popped->next() == popped);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue