Drop an unnecessary 'const'.

This commit is contained in:
Hill Ma 2021-02-20 22:30:44 -08:00
parent 869a9d273c
commit d1e32865f1

View File

@ -298,7 +298,7 @@ class Value {
DEFAULT_METHODS(Value)
char Type() const { return static_cast<const char>(type_); }
char Type() const { return static_cast<char>(type_); }
bool IsBool() const { return (type_ == BOOL_TYPE); }