From 2bc7a7edfc74a1aa529b9d4bee0134bd5d5027ef Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 30 May 2024 23:34:23 +1000 Subject: [PATCH] Cleanup: quiet missing-declarations warning --- source/blender/editors/sculpt_paint/grease_pencil_draw_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/sculpt_paint/grease_pencil_draw_ops.cc b/source/blender/editors/sculpt_paint/grease_pencil_draw_ops.cc index 32d31b203e1..88c040e76da 100644 --- a/source/blender/editors/sculpt_paint/grease_pencil_draw_ops.cc +++ b/source/blender/editors/sculpt_paint/grease_pencil_draw_ops.cc @@ -699,7 +699,7 @@ static Vector ensure_editable_drawings(const Scene &scene, return drawings; } -void smooth_fill_strokes(bke::CurvesGeometry &curves, const IndexMask &stroke_mask) +static void smooth_fill_strokes(bke::CurvesGeometry &curves, const IndexMask &stroke_mask) { const int iterations = 20; if (curves.points_num() == 0) {