From e70560a86313ee02fded8c3836cd623c1b5822a9 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 21 Jun 2025 18:29:57 -0400 Subject: [PATCH] Disable warning about variable-length arrays. --- compile.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.mk b/compile.mk index a076c20d..a2aaa387 100644 --- a/compile.mk +++ b/compile.mk @@ -16,7 +16,7 @@ FLAGS += -g # Optimization FLAGS += -O3 -funsafe-math-optimizations -fno-omit-frame-pointer # Warnings -FLAGS += -Wall -Wextra -Wno-unused-parameter +FLAGS += -Wall -Wextra -Wno-unused-parameter -Wno-vla-extension # C++ standard CXXFLAGS += -std=c++11