From e3286f119d8debe0803503ffd16c6af71bf14980 Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Sun, 3 Aug 2025 18:39:32 -0400 Subject: [PATCH] fix duplicate symbols bug --- utils/lists/gryphn_array_list.c | 4 ++++ utils/lists/gryphn_array_list.h | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 utils/lists/gryphn_array_list.c diff --git a/utils/lists/gryphn_array_list.c b/utils/lists/gryphn_array_list.c new file mode 100644 index 0000000..0de3a06 --- /dev/null +++ b/utils/lists/gryphn_array_list.c @@ -0,0 +1,4 @@ +#include "gryphn_array_list.h" + +GN_ARRAY_LIST_DEFINITION(uint32_t) +GN_ARRAY_LIST_DEFINITION(int) diff --git a/utils/lists/gryphn_array_list.h b/utils/lists/gryphn_array_list.h index 1ad4da7..08d4693 100644 --- a/utils/lists/gryphn_array_list.h +++ b/utils/lists/gryphn_array_list.h @@ -77,7 +77,4 @@ type* type##ArrayListData(type##ArrayList list) { \ GN_ARRAY_LIST_HEADER(uint32_t); -GN_ARRAY_LIST_DEFINITION(uint32_t) - GN_ARRAY_LIST_HEADER(int); -GN_ARRAY_LIST_DEFINITION(int)