diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-03 09:09:02 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-03 09:09:02 -0400 |
commit | 974f49ca165f8d90f8f8565ae4d71beb402b2d3a (patch) | |
tree | 220bb17db13535387a6e440f1a6cb62a1088efcc | |
parent | 9bb53dc9d71b38afd1e2707dbe7282c555a9dc39 (diff) |
fix standalone
-rw-r--r-- | alee-standalone.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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<alee_dat_len> dict (alee_dat); + (void)alee_dat_len; + SplitMemDict<sizeof(alee_dat)> dict (alee_dat); State state (dict, readchar); std::vector args (argv + 1, argv + argc); |