Skip to content

Commit 8f682b2

Browse files
committed
Patch for warnings being generated by clang-cl
1 parent 1db9fd0 commit 8f682b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/ccmath/internal/predef/attributes/always_inline.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#ifndef CCM_ALWAYS_INLINE
1717
#if defined(CCM_CONFIG_NO_FORCED_INLINE)
1818
#define CCM_ALWAYS_INLINE inline
19-
#elif defined(__GNUC__) || (defined(__clang__) && !defined(_MSC_VER)
19+
#elif defined(__GNUC__) || (defined(__clang__) && !defined(_MSC_VER))
2020
#define CCM_ALWAYS_INLINE __attribute__((always_inline)) inline
2121
#elif defined(_MSC_VER)
2222
#define CCM_ALWAYS_INLINE __forceinline

0 commit comments

Comments
 (0)