From e31f0fad9744c8133ef84251c18e89c1e3e5d04e Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 25 Feb 2019 11:39:14 +0100 Subject: Cleanup: order of modifiers' headers includes. BLI should always comes first, before DNA, BKE etc. And `BLI_utildefines.h` should come before any other BLI (since it's some sort of system include really, among other things...). Thisi should help to reduce the noise in patches when adding stuff like uint64_t members to DNA structs... ;) --- source/blender/gpencil_modifiers/intern/MOD_gpencilthick.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/gpencil_modifiers/intern/MOD_gpencilthick.c') diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencilthick.c b/source/blender/gpencil_modifiers/intern/MOD_gpencilthick.c index be9a53f65a2..2f8c411af18 100644 --- a/source/blender/gpencil_modifiers/intern/MOD_gpencilthick.c +++ b/source/blender/gpencil_modifiers/intern/MOD_gpencilthick.c @@ -23,14 +23,14 @@ #include +#include "BLI_utildefines.h" + #include "DNA_meshdata_types.h" #include "DNA_scene_types.h" #include "DNA_object_types.h" #include "DNA_gpencil_types.h" #include "DNA_gpencil_modifier_types.h" -#include "BLI_utildefines.h" - #include "BKE_colortools.h" #include "BKE_deform.h" #include "BKE_gpencil.h" -- cgit v1.2.3