diff -r c0e2e9f83399 -r e075009b33b7 src/cx/list.h --- a/src/cx/list.h Sun Oct 03 18:51:44 2021 +0200 +++ b/src/cx/list.h Tue Oct 05 11:19:32 2021 +0200 @@ -85,12 +85,6 @@ void *cxListLast(CxList list); -#define cxTypedListAdd(type, list, elem) (cxListAdd(list, (type*) (elem))) -#define cxTypedListInsert(type, list, index, elem) (cxListInsert(list, index, (type*) (elem))) -#define cxTypedListAt(type, list, index) ((type*)cxListAt(list, index)) -#define cxTypedListFind(type, list, elem) (cxListFind(list, (type*) (elem))) -#define cxTypedListLast(type, list) ((type*)cxListLast(list)) - #ifdef __cplusplus } /* extern "C" */ #endif