From 7d2f27244c2ccf89b7c02ffab05f533cad1d88d5 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Wed, 3 Mar 2021 12:17:48 +0100 Subject: [PATCH] Cleanup: clang tidy Can use const parameter. --- source/blender/editors/sculpt_paint/sculpt_expand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/sculpt_paint/sculpt_expand.c b/source/blender/editors/sculpt_paint/sculpt_expand.c index 2d1d973221a..db6d33c2700 100644 --- a/source/blender/editors/sculpt_paint/sculpt_expand.c +++ b/source/blender/editors/sculpt_paint/sculpt_expand.c @@ -375,7 +375,7 @@ static BLI_bitmap *sculpt_expand_bitmap_from_enabled(SculptSession *ss, ExpandCa * vertex that is not enabled. */ static BLI_bitmap *sculpt_expand_boundary_from_enabled(SculptSession *ss, - BLI_bitmap *enabled_vertices, + const BLI_bitmap *enabled_vertices, const bool use_mesh_boundary) { const int totvert = SCULPT_vertex_count_get(ss);