From a1a34cb54ddf4485daf828f13df162bfad87e83a Mon Sep 17 00:00:00 2001 From: David Siegel Date: Wed, 7 Jun 2023 15:30:02 +0200 Subject: [PATCH] fix syntax error --- tiny_gltf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiny_gltf.h b/tiny_gltf.h index ca32900..26def60 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -3426,7 +3426,7 @@ void Erase(detail::json & o, detail::json_iterator &it) { bool IsEmpty(const detail::json & o) { #ifdef TINYGLTF_USE_RAPIDJSON - return o.ObjectEmpty(): + return o.ObjectEmpty(); #else return o.empty(); #endif