BLI: move inline include to the bottom to avoid redeclaration warning

This commit is contained in:
Jacques Lucke 2020-07-16 11:33:35 +02:00
parent d897228682
commit d4ce777aed
1 changed files with 4 additions and 4 deletions

View File

@ -26,10 +26,6 @@
#include "BLI_math_base.h"
#if BLI_MATH_DO_INLINE
# include "intern/math_base_safe_inline.c"
#endif
#ifdef __cplusplus
extern "C" {
#endif
@ -47,4 +43,8 @@ MINLINE float safe_powf(float base, float exponent);
}
#endif
#if BLI_MATH_DO_INLINE
# include "intern/math_base_safe_inline.c"
#endif
#endif /* __BLI_MATH_BASE_SAFE_H__ */