From 4c37b3ea022b9be6cca8580cdfedd7b2e3896eb9 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Mon, 19 Aug 2024 17:00:29 -0400 Subject: [PATCH] Cleanup: Resolved missing declaration warnings after recent cleanup 852b3dbff37acb4666103f902be92fe263c43654 --- source/blender/editors/sculpt_paint/sculpt.cc | 1 + source/blender/editors/sculpt_paint/sculpt_boundary.cc | 1 + source/blender/editors/sculpt_paint/sculpt_cloth.cc | 1 + source/blender/editors/sculpt_paint/sculpt_geodesic.cc | 1 + source/blender/editors/sculpt_paint/sculpt_paint_color.cc | 1 + source/blender/editors/sculpt_paint/sculpt_pose.cc | 1 + source/blender/editors/sculpt_paint/sculpt_undo.cc | 1 + 7 files changed, 7 insertions(+) diff --git a/source/blender/editors/sculpt_paint/sculpt.cc b/source/blender/editors/sculpt_paint/sculpt.cc index e948a962952..0307999c1e6 100644 --- a/source/blender/editors/sculpt_paint/sculpt.cc +++ b/source/blender/editors/sculpt_paint/sculpt.cc @@ -86,6 +86,7 @@ #include "sculpt_dyntopo.hh" #include "sculpt_face_set.hh" #include "sculpt_filter.hh" +#include "sculpt_hide.hh" #include "sculpt_intern.hh" #include "sculpt_islands.hh" #include "sculpt_pose.hh" diff --git a/source/blender/editors/sculpt_paint/sculpt_boundary.cc b/source/blender/editors/sculpt_paint/sculpt_boundary.cc index 1917ed6e86f..244a4ced42f 100644 --- a/source/blender/editors/sculpt_paint/sculpt_boundary.cc +++ b/source/blender/editors/sculpt_paint/sculpt_boundary.cc @@ -23,6 +23,7 @@ #include "BKE_paint.hh" #include "BKE_pbvh_api.hh" +#include "brushes/types.hh" #include "mesh_brush_common.hh" #include "paint_intern.hh" #include "sculpt_cloth.hh" diff --git a/source/blender/editors/sculpt_paint/sculpt_cloth.cc b/source/blender/editors/sculpt_paint/sculpt_cloth.cc index 7ed8ba5f421..019b660bda9 100644 --- a/source/blender/editors/sculpt_paint/sculpt_cloth.cc +++ b/source/blender/editors/sculpt_paint/sculpt_cloth.cc @@ -44,6 +44,7 @@ #include "ED_sculpt.hh" +#include "brushes/types.hh" #include "mesh_brush_common.hh" #include "sculpt_automask.hh" #include "sculpt_face_set.hh" diff --git a/source/blender/editors/sculpt_paint/sculpt_geodesic.cc b/source/blender/editors/sculpt_paint/sculpt_geodesic.cc index eb8133fa479..e76048ad206 100644 --- a/source/blender/editors/sculpt_paint/sculpt_geodesic.cc +++ b/source/blender/editors/sculpt_paint/sculpt_geodesic.cc @@ -29,6 +29,7 @@ #include "BKE_pbvh_api.hh" #include "paint_intern.hh" +#include "sculpt_geodesic.hh" #include "sculpt_intern.hh" #include "bmesh.hh" diff --git a/source/blender/editors/sculpt_paint/sculpt_paint_color.cc b/source/blender/editors/sculpt_paint/sculpt_paint_color.cc index c4cc3b2148d..4344a040a48 100644 --- a/source/blender/editors/sculpt_paint/sculpt_paint_color.cc +++ b/source/blender/editors/sculpt_paint/sculpt_paint_color.cc @@ -30,6 +30,7 @@ #include "IMB_colormanagement.hh" #include "mesh_brush_common.hh" +#include "sculpt_color.hh" #include "sculpt_intern.hh" #include "sculpt_smooth.hh" diff --git a/source/blender/editors/sculpt_paint/sculpt_pose.cc b/source/blender/editors/sculpt_paint/sculpt_pose.cc index 9323a236ee3..83700dc322b 100644 --- a/source/blender/editors/sculpt_paint/sculpt_pose.cc +++ b/source/blender/editors/sculpt_paint/sculpt_pose.cc @@ -33,6 +33,7 @@ #include "sculpt_flood_fill.hh" #include "sculpt_hide.hh" #include "sculpt_intern.hh" +#include "sculpt_pose.hh" #include "sculpt_smooth.hh" #include "bmesh.hh" diff --git a/source/blender/editors/sculpt_paint/sculpt_undo.cc b/source/blender/editors/sculpt_paint/sculpt_undo.cc index 454313c4acf..8fed9dd50e8 100644 --- a/source/blender/editors/sculpt_paint/sculpt_undo.cc +++ b/source/blender/editors/sculpt_paint/sculpt_undo.cc @@ -81,6 +81,7 @@ #include "sculpt_dyntopo.hh" #include "sculpt_face_set.hh" #include "sculpt_intern.hh" +#include "sculpt_undo.hh" namespace blender::ed::sculpt_paint::undo {