From 5681631109852d1037cddafd60f39552f8ba3bbf Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 10 Jan 2019 08:46:38 +1100 Subject: Cleanup: ensure header guards come first Causes clang-format not to detect header guards, indenting all preprocessor lines in the header. --- source/blender/editors/include/UI_resources.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/include/UI_resources.h') diff --git a/source/blender/editors/include/UI_resources.h b/source/blender/editors/include/UI_resources.h index 92871484e66..d686594f334 100644 --- a/source/blender/editors/include/UI_resources.h +++ b/source/blender/editors/include/UI_resources.h @@ -29,11 +29,11 @@ * \ingroup editorui */ -#include "BLI_sys_types.h" - #ifndef __UI_RESOURCES_H__ #define __UI_RESOURCES_H__ +#include "BLI_sys_types.h" + /* Define icon enum. */ #define DEF_ICON(name) ICON_##name, #define DEF_ICON_VECTOR(name) ICON_##name, -- cgit v1.2.3