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:
authorBastien Montagne <b.mont29@gmail.com>2020-02-12 12:45:21 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-12 12:46:53 +0300
commit0e15850a7eedbdf236e977c663efaceff23572e1 (patch)
tree7868b772a3b7f46d97bf2e729703280f5172cdc2 /source/blender/blenlib/BLI_compiler_compat.h
parente32457952b45e5df7c3fc7d3e948e1403c7452da (diff)
Cleanup: clang-format.
Diffstat (limited to 'source/blender/blenlib/BLI_compiler_compat.h')
-rw-r--r--source/blender/blenlib/BLI_compiler_compat.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/source/blender/blenlib/BLI_compiler_compat.h b/source/blender/blenlib/BLI_compiler_compat.h
index 312991e7f15..bd1cd327d3c 100644
--- a/source/blender/blenlib/BLI_compiler_compat.h
+++ b/source/blender/blenlib/BLI_compiler_compat.h
@@ -15,7 +15,7 @@
*/
#ifndef __BLI_COMPILER_COMPAT_H__
-#define __BLI_COMPILER_COMPAT_H__
+# define __BLI_COMPILER_COMPAT_H__
/** \file
* \ingroup bli
@@ -23,32 +23,32 @@
* Use to help with cross platform portability.
*/
-#if defined(_MSC_VER)
-# define alloca _alloca
-#endif
+# if defined(_MSC_VER)
+# define alloca _alloca
+# endif
-#if (defined(__GNUC__) || defined(__clang__)) && defined(__cplusplus)
+# if (defined(__GNUC__) || defined(__clang__)) && defined(__cplusplus)
extern "C++" {
/* Some magic to be sure we don't have reference in the type. */
template<typename T> static inline T decltype_helper(T x)
{
return x;
}
-# define typeof(x) decltype(decltype_helper(x))
+# define typeof(x) decltype(decltype_helper(x))
}
-#endif
+# endif
/* little macro so inline keyword works */
-#if defined(_MSC_VER)
-# define BLI_INLINE static __forceinline
-#else
-# define BLI_INLINE static inline __attribute__((always_inline)) __attribute__((__unused__))
-#endif
+# if defined(_MSC_VER)
+# define BLI_INLINE static __forceinline
+# else
+# define BLI_INLINE static inline __attribute__((always_inline)) __attribute__((__unused__))
+# endif
-#if defined(__GNUC__)
-# define BLI_NOINLINE __attribute__((noinline))
-#else
-# define BLI_NOINLINE
-#endif
+# if defined(__GNUC__)
+# define BLI_NOINLINE __attribute__((noinline))
+# else
+# define BLI_NOINLINE
+# endif
#endif /* __BLI_COMPILER_COMPAT_H__ */