Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-06-14 18:06:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-14 18:07:50 +0300
commitcbd894e5a8c58a25ed8251aa281e085c0bd7944f (patch)
tree779fd26cb5b626a647ac483172dc0feaa093f208 /source/blender/blenkernel
parent725cc959c7318b9860e7140951b607f7ef1db2f8 (diff)
Cleanup: remove unnecessary header
Introduced in D8007
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/BKE_paint.h4
1 files changed, 2 insertions, 2 deletions
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;