From: Hosang Kim Date: Tue, 11 Jun 2024 07:59:11 +0000 (+0900) Subject: [Tizen] Fix for GCC14 X-Git-Tag: accepted/tizen/unified/20240614.010914^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f96d057263a7d4a10d84083de439b2f38c455848;p=platform%2Fcore%2Fuifw%2Fdali-demo.git [Tizen] Fix for GCC14 This reverts commit ed6d1c6e094ad4de4176de9aa2d481b0dd276316. --- 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();