diff options
author | D G Turner | 2019-12-15 00:30:27 +0000 |
---|---|---|
committer | D G Turner | 2019-12-15 00:30:27 +0000 |
commit | 8f897f2e3fdadff35c2c093a9ddd2f3157060a05 (patch) | |
tree | 41af09c1a856b91288569d560012d66f5c512424 /engines/glk/archetype/parser.cpp | |
parent | 9cd37b0d118afd2a3d890b32a4a4924988eef7f1 (diff) | |
download | scummvm-rg350-8f897f2e3fdadff35c2c093a9ddd2f3157060a05.tar.gz scummvm-rg350-8f897f2e3fdadff35c2c093a9ddd2f3157060a05.tar.bz2 scummvm-rg350-8f897f2e3fdadff35c2c093a9ddd2f3157060a05.zip |
GLK: ARCHETYPE: Fix Unused Const Variable Compiler Warning
This is emitted from Clang with -Wunused-const-variable.
Diffstat (limited to 'engines/glk/archetype/parser.cpp')
-rw-r--r-- | engines/glk/archetype/parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |