From f96d057263a7d4a10d84083de439b2f38c455848 Mon Sep 17 00:00:00 2001 From: Hosang Kim Date: Tue, 11 Jun 2024 16:59:11 +0900 Subject: [PATCH] [Tizen] Fix for GCC14 This reverts commit ed6d1c6e094ad4de4176de9aa2d481b0dd276316. --- 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 9b5a67f..ad05239 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) { - std::find_if(mesh.attributes.begin(), mesh.attributes.end(), [&data, &attrType](const std::pair& item) { + (void)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