3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 04:03:39 +00:00

fix signature

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-07-18 10:19:57 -07:00
parent 458d8b033a
commit 08b6338061
2 changed files with 2 additions and 3 deletions

View file

@ -36,7 +36,7 @@ add_executable(test-z3
dl_relation.cpp dl_relation.cpp
dl_table.cpp dl_table.cpp
dl_util.cpp dl_util.cpp
doc.cpp doc.cpp
dlist.cpp dlist.cpp
egraph.cpp egraph.cpp
escaped.cpp escaped.cpp

View file

@ -151,7 +151,7 @@ void test_contains() {
std::cout << "test_contains passed." << std::endl; std::cout << "test_contains passed." << std::endl;
} }
int tst_dlist() { void tst_dlist() {
test_prev(); test_prev();
test_next(); test_next();
test_const_prev(); test_const_prev();
@ -166,5 +166,4 @@ int tst_dlist() {
test_invariant(); test_invariant();
test_contains(); test_contains();
std::cout << "All tests passed." << std::endl; std::cout << "All tests passed." << std::endl;
return 0;
} }