From 30825a49ffe59205a6a680f15eb50232c94d3397 Mon Sep 17 00:00:00 2001 From: pjht Date: Mon, 3 Jun 2019 16:22:31 -0500 Subject: [PATCH] remove todo comment --- compiler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler.c b/compiler.c index 47c4129..cfb6219 100644 --- a/compiler.c +++ b/compiler.c @@ -48,7 +48,7 @@ typedef struct { } Local; typedef struct Compiler { - Local* locals; //TODO: Make this a dynamic array + Local* locals; int localCount; int localCapacity; int scopeDepth;