From a2dc11280c23745dfefd399a060b992e2dfac950 Mon Sep 17 00:00:00 2001 From: Avril Date: Sun, 6 Dec 2020 13:14:32 +0000 Subject: [PATCH] remove old comment --- day6/day6.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day6/day6.c b/day6/day6.c index a6701a9..79e9862 100644 --- a/day6/day6.c +++ b/day6/day6.c @@ -43,7 +43,7 @@ noglobal inline static char assert_in_bound(char i) return i; } -static void populate(const char* from, answers_t * restrict ans) //wtf is this syntax? `bool* restrict a` -> `bool a[restrict N]`???? +static void populate(const char* from, answers_t * restrict ans) { while(*from) ans->table[(int)assert_in_bound((*from++)-'a')]