diff options
Diffstat (limited to 'include/wabt/wast-lexer.h')
-rw-r--r-- | include/wabt/wast-lexer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wabt/wast-lexer.h b/include/wabt/wast-lexer.h index 23ee5ea9..a88889ab 100644 --- a/include/wabt/wast-lexer.h +++ b/include/wabt/wast-lexer.h @@ -56,7 +56,7 @@ class WastLexer { } private: - static const int kEof = -1; + static constexpr int kEof = -1; enum class CharClass { IdChar = 1, Keyword = 2, HexDigit = 4, Digit = 8 }; Location GetLocation(); |