From 974f49ca165f8d90f8f8565ae4d71beb402b2d3a Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 3 Nov 2023 09:09:02 -0400 Subject: [PATCH] fix standalone --- alee-standalone.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/alee-standalone.cpp b/alee-standalone.cpp index 509db2f..5681dbf 100644 --- a/alee-standalone.cpp +++ b/alee-standalone.cpp @@ -35,7 +35,8 @@ static void parseFile(State&, std::istream&); int main(int argc, char *argv[]) { - SplitMemDict dict (alee_dat); + (void)alee_dat_len; + SplitMemDict dict (alee_dat); State state (dict, readchar); std::vector args (argv + 1, argv + argc);