From 0d86027d82912bad9f221260823ccf7d3091304e Mon Sep 17 00:00:00 2001 From: jykeon Date: Tue, 18 Jun 2024 17:28:41 +0900 Subject: [PATCH] Revert "[Tizen] Fix for GCC14" This reverts commit f96d057263a7d4a10d84083de439b2f38c455848. --- examples/reflection-demo/gltf-scene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/reflection-demo/gltf-scene.cpp b/examples/reflection-demo/gltf-scene.cpp index ad05239..9b5a67f 100644 --- a/examples/reflection-demo/gltf-scene.cpp +++ b/examples/reflection-demo/gltf-scene.cpp @@ -464,7 +464,7 @@ std::vector glTF::GetMeshAttributeBuffer(const glTF_Mesh& mesh, c std::vector data{}; for(const auto& attrType : attrTypes) { - (void)std::find_if(mesh.attributes.begin(), mesh.attributes.end(), [&data, &attrType](const std::pair& item) { + std::find_if(mesh.attributes.begin(), mesh.attributes.end(), [&data, &attrType](const std::pair& item) { if(item.first == attrType) { data.emplace_back(); -- 2.7.4