aboutsummaryrefslogtreecommitdiffstats
path: root/alee-standalone.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alee-standalone.cpp')
-rw-r--r--alee-standalone.cpp3
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);