From 405da5f84b072ea97b69359454899f45d92d24b6 Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Wed, 22 May 2024 00:00:29 +0200 Subject: 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. --- test/allocator.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/allocator.c') diff --git a/test/allocator.c b/test/allocator.c index fe01334..96ef6df 100644 --- a/test/allocator.c +++ b/test/allocator.c @@ -3,7 +3,7 @@ #include "assert.h" #include "test.h" -void test_frame_allocator() { +void test_frame_allocator(void) { struct frame_allocator fa = frame_allocator_create(128); ASSERT(fa.capacity == 128, @@ -28,4 +28,4 @@ void test_frame_allocator() { frame_allocator_destroy(&fa); } -void run_allocator_tests() { run_test(test_frame_allocator); } +void run_allocator_tests(void) { run_test(test_frame_allocator); } -- cgit v1.2.3