summaryrefslogtreecommitdiff
path: root/test/container.c
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2024-05-22 00:00:29 +0200
committerAlbert Cervin <albert@acervin.com>2024-09-12 20:17:56 +0200
commit405da5f84b072ea97b69359454899f45d92d24b6 (patch)
tree20525b4bc44a5d8cbab4d62abe8413e174731db6 /test/container.c
parent4ab7e453e26afc6e9f4938c65f89463fbba9e267 (diff)
downloaddged-405da5f84b072ea97b69359454899f45d92d24b6.tar.gz
dged-405da5f84b072ea97b69359454899f45d92d24b6.tar.xz
dged-405da5f84b072ea97b69359454899f45d92d24b6.zip
WIP LSP client
This contains the start of an LSP client. Nothing (except starting the LSP server) works at the moment and the feature is disabled by default.
Diffstat (limited to 'test/container.c')
-rw-r--r--test/container.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/container.c b/test/container.c
index 8be7fc9..bfdf052 100644
--- a/test/container.c
+++ b/test/container.c
@@ -5,7 +5,7 @@
#include "assert.h"
#include "test.h"
-void test_empty_bintree() {
+void test_empty_bintree(void) {
BINTREE_ENTRY_TYPE(node, int);
BINTREE(node) tree;
@@ -29,7 +29,7 @@ void test_empty_bintree() {
BINTREE_FREE_NODES(BINTREE_ROOT(&tree), node);
}
-void test_bintree_iter() {
+void test_bintree_iter(void) {
BINTREE_ENTRY_TYPE(node, char);
BINTREE(node) tree;
BINTREE_INIT(&tree);
@@ -96,7 +96,7 @@ void test_bintree_iter() {
BINTREE_FREE_NODES(root, node);
}
-void run_container_tests() {
+void run_container_tests(void) {
run_test(test_empty_bintree);
run_test(test_bintree_iter);
}