From 958589b29ae0e0a2c202a6e6a2a65a326a0ed058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Thu, 19 Dec 2024 00:00:00 +0000 Subject: [PATCH] [drape_frontend] Fix `memset` of non-trivial `CirclesPackDynamicVertex` type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the following GCC warning: ```` drape_frontend/circles_pack_shape.cpp:133:9: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct df::CirclesPackDynamicVertex’; use assignment or value-initialization instead [-Wclass-memaccess] 133 | memset(m_buffer.data(), 0, m_buffer.size() * sizeof(CirclesPackDynamicVertex)); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ```` Signed-off-by: Ferenc Géczi --- drape_frontend/circles_pack_shape.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drape_frontend/circles_pack_shape.cpp b/drape_frontend/circles_pack_shape.cpp index 71eeceabda..31fb0e376f 100644 --- a/drape_frontend/circles_pack_shape.cpp +++ b/drape_frontend/circles_pack_shape.cpp @@ -130,7 +130,7 @@ void CirclesPackHandle::SetPoint(size_t index, m2::PointD const & position, floa void CirclesPackHandle::Clear() { - memset(m_buffer.data(), 0, m_buffer.size() * sizeof(CirclesPackDynamicVertex)); + fill(begin(m_buffer), end(m_buffer), CirclesPackDynamicVertex(glsl::vec3(0.0f), glsl::vec4(0.0f))); m_needUpdate = true; }