fix: replaced comma where a semicolon should've been

This commit is contained in:
Sara 2024-01-14 13:11:49 +01:00
parent 2f9cd32f6c
commit 3f5ff9da55

View file

@ -82,7 +82,7 @@ List* T##_get_typeclasses(T* self) {\
static char init_flag = 0;\
static List typeclasses;\
if(!init_flag) {\
init_flag = 1,\
init_flag = 1;\
typeclasses = list_init(sizeof(MirroredTypeclass));\
MirroredTypeclass tc;