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-10 00:46:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-10 00:46:38 +0300
commit5681631109852d1037cddafd60f39552f8ba3bbf (patch)
tree95fa7f3db88c7e3f52c42c8adeefe62a756ea9e0 /source/blender/blenlib/BLI_endian_switch_inline.h
parent69c8f0cc3b31301adc2a301f05e5bdb2c5916d08 (diff)
Cleanup: ensure header guards come first
Causes clang-format not to detect header guards, indenting all preprocessor lines in the header.
Diffstat (limited to 'source/blender/blenlib/BLI_endian_switch_inline.h')
-rw-r--r--source/blender/blenlib/BLI_endian_switch_inline.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_endian_switch_inline.h b/source/blender/blenlib/BLI_endian_switch_inline.h
index 280503e9b93..2be76e67b37 100644
--- a/source/blender/blenlib/BLI_endian_switch_inline.h
+++ b/source/blender/blenlib/BLI_endian_switch_inline.h
@@ -20,14 +20,14 @@
* ***** END GPL LICENSE BLOCK *****
*/
+#ifndef __BLI_ENDIAN_SWITCH_INLINE_H__
+#define __BLI_ENDIAN_SWITCH_INLINE_H__
+
/* only include from header */
#ifndef __BLI_ENDIAN_SWITCH_H__
# error "this file isnt to be directly included"
#endif
-#ifndef __BLI_ENDIAN_SWITCH_INLINE_H__
-#define __BLI_ENDIAN_SWITCH_INLINE_H__
-
/** \file blender/blenlib/BLI_endian_switch_inline.h
* \ingroup bli
*/