From ce25385eab64fa29da300aee602101db24b11c6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Schmith=C3=BCsen?= Date: Mon, 2 Sep 2019 13:43:24 +0200 Subject: [PATCH] remove extra parenthesis --- tiny_gltf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiny_gltf.h b/tiny_gltf.h index 67ed245..0719dd9 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -4563,7 +4563,7 @@ bool TinyGLTF::LoadFromString(Model *model, std::string *err, std::string *warn, } const json &o = it->get(); std::vector nodes; - ParseIntegerArrayProperty(&nodes, err, o, "nodes", false)); + ParseIntegerArrayProperty(&nodes, err, o, "nodes", false); Scene scene; scene.nodes = std::move(nodes);