From 8f897f2e3fdadff35c2c093a9ddd2f3157060a05 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Sun, 15 Dec 2019 00:30:27 +0000 Subject: GLK: ARCHETYPE: Fix Unused Const Variable Compiler Warning This is emitted from Clang with -Wunused-const-variable. --- engines/glk/archetype/parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/glk/archetype/parser.cpp') diff --git a/engines/glk/archetype/parser.cpp b/engines/glk/archetype/parser.cpp index 49cd8f14be..18fad82c5b 100644 --- a/engines/glk/archetype/parser.cpp +++ b/engines/glk/archetype/parser.cpp @@ -27,7 +27,7 @@ namespace Glk { namespace Archetype { -const int WORD_LEN = 32; +//const int WORD_LEN = 32; // FIXME: Unused. Remove? struct ParseType { StringPtr word; -- cgit v1.2.3