[Bf-blender-cvs] [cbd894e5a8c] master: Cleanup: remove unnecessary header

Campbell Barton noreply at git.blender.org
Sun Jun 14 17:09:25 CEST 2020


Commit: cbd894e5a8c58a25ed8251aa281e085c0bd7944f
Author: Campbell Barton
Date:   Mon Jun 15 01:06:43 2020 +1000
Branches: master
https://developer.blender.org/rBcbd894e5a8c58a25ed8251aa281e085c0bd7944f

Cleanup: remove unnecessary header

Introduced in D8007

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

M	source/blender/blenkernel/BKE_paint.h

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

diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h
index 144e091d971..6e4f2efeeb8 100644
--- a/source/blender/blenkernel/BKE_paint.h
+++ b/source/blender/blenkernel/BKE_paint.h
@@ -24,7 +24,6 @@
  * \ingroup bke
  */
 
-#include "BLI_ghash.h"
 #include "BLI_utildefines.h"
 #include "DNA_object_enums.h"
 
@@ -39,6 +38,7 @@ struct CurveMapping;
 struct Depsgraph;
 struct EnumPropertyItem;
 struct GHash;
+struct GSet;
 struct GridPaintMask;
 struct ImagePool;
 struct MLoop;
@@ -269,7 +269,7 @@ typedef struct SculptClothLengthConstraint {
 typedef struct SculptClothSimulation {
   SculptClothLengthConstraint *length_constraints;
   int tot_length_constraints;
-  GSet *created_length_constraints;
+  struct GSet *created_length_constraints;
   int capacity_length_constraints;
   float *length_constraint_tweak;



More information about the Bf-blender-cvs mailing list