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:
authorJacques Lucke <jacques@blender.org>2020-12-11 13:48:58 +0300
committerJacques Lucke <jacques@blender.org>2020-12-11 13:48:58 +0300
commit150a1d158a79582802bb17dacdd790f0f88aeedb (patch)
tree3ea99d8e78f3aa46a65c1a1b4c3e0afe500d0313 /source/blender/blenkernel/BKE_paint.h
parentf5c72467176c1f5e8922c86c697e58861cf782a4 (diff)
Cleanup: remove some forward declared enums
Forward declaring enums are not allowed in C++. Differential Revision: https://developer.blender.org/D9811
Diffstat (limited to 'source/blender/blenkernel/BKE_paint.h')
-rw-r--r--source/blender/blenkernel/BKE_paint.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h
index 479bc56b2dc..0a50dde1874 100644
--- a/source/blender/blenkernel/BKE_paint.h
+++ b/source/blender/blenkernel/BKE_paint.h
@@ -25,6 +25,7 @@
#include "BLI_bitmap.h"
#include "BLI_utildefines.h"
+#include "DNA_brush_enums.h"
#include "DNA_object_enums.h"
#ifdef __cplusplus
@@ -70,8 +71,6 @@ struct BlendWriter;
struct BlendDataReader;
struct BlendLibReader;
-enum eOverlayFlags;
-
extern const char PAINT_CURSOR_SCULPT[3];
extern const char PAINT_CURSOR_VERTEX_PAINT[3];
extern const char PAINT_CURSOR_WEIGHT_PAINT[3];