From 3b3846c3d14e6f52bca039b7105dd1414441e490 Mon Sep 17 00:00:00 2001 From: r4 Date: Tue, 31 May 2022 19:36:26 +0200 Subject: [PATCH] remove temporary insert for testing --- include/ds/generic/map.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/ds/generic/map.h b/include/ds/generic/map.h index 48fef60..db53196 100644 --- a/include/ds/generic/map.h +++ b/include/ds/generic/map.h @@ -54,8 +54,6 @@ FUNCDECL(bool, _del)(NAME m, KTYPE key); FUNCDECL(Error, _rehash)(NAME *m, size_t new_minimum_cap); FUNCDECL(bool, _it_next)(NAME m, ITEM_TYPE **restrict it); -VARDEF(const char *, test_string_lol) = NULL; - #ifdef GENERIC_IMPL VARDEF(const char *, __val_fmt) = NULL; VARDEF(const char *, __key_fmt) = NULL;