aboutsummaryrefslogtreecommitdiff
path: root/engines/glk
diff options
context:
space:
mode:
authorD G Turner2019-12-15 00:30:27 +0000
committerD G Turner2019-12-15 00:30:27 +0000
commit8f897f2e3fdadff35c2c093a9ddd2f3157060a05 (patch)
tree41af09c1a856b91288569d560012d66f5c512424 /engines/glk
parent9cd37b0d118afd2a3d890b32a4a4924988eef7f1 (diff)
downloadscummvm-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')
-rw-r--r--engines/glk/archetype/parser.cpp2
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;