[Bf-blender-cvs] [79973494eca] master: Cleanup: Fix building warnings on gcc 9.4.0

Dalai Felinto noreply at git.blender.org
Fri Jun 24 11:25:19 CEST 2022


Commit: 79973494eca596bc633ca0d2da30d5e19ccd1733
Author: Dalai Felinto
Date:   Fri Jun 24 11:24:11 2022 +0200
Branches: master
https://developer.blender.org/rB79973494eca596bc633ca0d2da30d5e19ccd1733

Cleanup: Fix building warnings on gcc 9.4.0

Solution by Jacques Lucke

===================================================================

M	source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc

===================================================================

diff --git a/source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc b/source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc
index 0fb4ded3b2a..a7c44a17e05 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc
+++ b/source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc
@@ -294,7 +294,7 @@ static bool transform_active_color(Mesh &mesh, const TransformFn &transform_fn)
   attribute_math::convert_to_static_type(color_attribute.varray.type(), [&](auto dummy) {
     using T = decltype(dummy);
     threading::parallel_for(selection.index_range(), 1024, [&](IndexRange range) {
-      for (const int i : selection.slice(range)) {
+      for ([[maybe_unused]] const int i : selection.slice(range)) {
         if constexpr (std::is_same_v<T, ColorGeometry4f>) {
           ColorGeometry4f color = color_attribute.varray.get<ColorGeometry4f>(i);
           transform_fn(color);



More information about the Bf-blender-cvs mailing list