Merge pull request #306 from mahiuchun/const

Drop an unnecessary 'const'.
This commit is contained in:
Syoyo Fujita 2021-02-21 16:07:51 +09:00 committed by GitHub
commit c56d069726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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); }