From 3f5ff9da55f743ec908a686a8171cf8962f5fd15 Mon Sep 17 00:00:00 2001 From: Sara Date: Sun, 14 Jan 2024 13:11:49 +0100 Subject: [PATCH] fix: replaced comma where a semicolon should've been --- core/src/mirror.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mirror.h b/core/src/mirror.h index ca703e5..0ec937c 100644 --- a/core/src/mirror.h +++ b/core/src/mirror.h @@ -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;