summaryrefslogtreecommitdiff
path: root/ds.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-29 17:33:29 -0500
committerpommicket <pommicket@gmail.com>2022-12-29 17:33:29 -0500
commit5f7af06a9085835a3d1ad3a51374c245859d7d97 (patch)
treef8ea4ad4d809334131b479ff8b9c0bd125c45f29 /ds.c
parente4aac4859511cb22ed84946eb5510cd7fa14e147 (diff)
fix GCC warnings
Diffstat (limited to 'ds.c')
-rw-r--r--ds.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ds.c b/ds.c
index eb235d6..99ad4d3 100644
--- a/ds.c
+++ b/ds.c
@@ -169,7 +169,6 @@ static void *arr_remove_(void *arr, size_t member_size, size_t index) {
#define arr__join2(a,b) a##b
#define arr__join(a,b) arr__join2(a,b) // macro used internally
-
// if the array is not NULL, free it and set it to NULL
#define arr_free(a) do { if (a) { free(arr_hdr_(a)); (a) = NULL; } } while (0)
// a nice alias