From d1e32865f111735ca294dcb410f5977cc39d79ae Mon Sep 17 00:00:00 2001 From: Hill Ma Date: Sat, 20 Feb 2021 22:30:44 -0800 Subject: [PATCH] Drop an unnecessary 'const'. --- tiny_gltf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiny_gltf.h b/tiny_gltf.h index 02030bc..a6115d4 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -298,7 +298,7 @@ class Value { DEFAULT_METHODS(Value) - char Type() const { return static_cast(type_); } + char Type() const { return static_cast(type_); } bool IsBool() const { return (type_ == BOOL_TYPE); }