We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b5075 commit 88a3b8eCopy full SHA for 88a3b8e
src/common.h
@@ -19,6 +19,8 @@
19
# define GIT_INLINE(type) static __inline type
20
#elif defined(__GNUC__)
21
# define GIT_INLINE(type) static __inline__ type
22
+#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
23
+# define GIT_INLINE(type) static inline type
24
#else
25
# define GIT_INLINE(type) static type
26
#endif
0 commit comments