fix syntax error

This commit is contained in:
David Siegel 2023-06-07 15:30:02 +02:00
parent cfe64fb6c8
commit a1a34cb54d

View File

@ -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