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>2019-01-28 14:08:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-28 14:12:49 +0300
commitf8ce24f79624b5bae8e6894d3ed4e619cef1cbb7 (patch)
tree7adcb17276d427daa0f6283a6483e7eb6ef91215 /source/blender/blenkernel/BKE_paint.h
parentd918217d35b687f174711d9ae35b8270909f1e28 (diff)
Cleanup: sort forward declarations of enum & struct
Done using: source/tools/utils_maintenance/c_sort_blocks.py
Diffstat (limited to 'source/blender/blenkernel/BKE_paint.h')
-rw-r--r--source/blender/blenkernel/BKE_paint.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h
index a8a5aa5274d..220b1cf8ba4 100644
--- a/source/blender/blenkernel/BKE_paint.h
+++ b/source/blender/blenkernel/BKE_paint.h
@@ -32,31 +32,31 @@
* \ingroup bke
*/
-struct bContext;
-struct BMesh;
struct BMFace;
+struct BMesh;
struct Brush;
struct CurveMapping;
-struct MeshElemMap;
struct GridPaintMask;
-struct Main;
+struct ImagePool;
+struct MFace;
struct MLoop;
struct MLoopTri;
-struct MFace;
struct MVert;
+struct Main;
+struct MeshElemMap;
struct Object;
+struct PBVH;
struct Paint;
struct PaintCurve;
struct Palette;
struct PaletteColor;
-struct PBVH;
struct ReportList;
struct Scene;
struct Sculpt;
struct StrokeCache;
struct Tex;
-struct ImagePool;
struct UnifiedPaintSettings;
+struct bContext;
enum eOverlayFlags;