vim-patch:63c39e4ef749

runtime(c): Recognize "__inline" (vim/vim#14145)

`__inline` is recognized by GCC, and may even be preferred, as MSVC does
not recognize `__inline__`.

63c39e4ef7

Co-authored-by: Wu Yongwei <wuyongwei@gmail.com>
This commit is contained in:
Christian Clason 2024-03-06 09:39:48 +01:00
parent a4290f462e
commit d72c9d1d19

View File

@ -252,7 +252,7 @@ if exists("c_gnu")
syn keyword cOperator typeof __typeof__ syn keyword cOperator typeof __typeof__
syn keyword cOperator __real__ __imag__ syn keyword cOperator __real__ __imag__
syn keyword cStorageClass __attribute__ __const__ __extension__ syn keyword cStorageClass __attribute__ __const__ __extension__
syn keyword cStorageClass inline __inline__ syn keyword cStorageClass inline __inline __inline__
syn keyword cStorageClass __restrict__ __volatile__ __noreturn__ syn keyword cStorageClass __restrict__ __volatile__ __noreturn__
endif endif
syn keyword cType int long short char void syn keyword cType int long short char void