diff --git a/tiny_gltf_loader.h b/tiny_gltf_loader.h index 20e2f5a..0d0ab77 100644 --- a/tiny_gltf_loader.h +++ b/tiny_gltf_loader.h @@ -1013,7 +1013,6 @@ bool ParseNode(Node &node, std::string &err, const picojson::object &o) { const picojson::array &childrenArray = (childrenObject->second).get(); for (size_t i = 0; i < childrenArray.size(); i++) { - Node node; if (!childrenArray[i].is()) { err += "Invalid `children` array.\n"; return false;