gallium: Use the inline keyword on C++.

This commit is contained in:
José Fonseca 2008-07-01 22:04:58 +09:00
parent 846f87d826
commit b3da2a9524

View file

@ -107,7 +107,9 @@ typedef unsigned char boolean;
/* Function inlining */
#if defined(__GNUC__)
#ifdef __cplusplus
# define INLINE inline
#elif defined(__GNUC__)
# define INLINE __inline__
#elif defined(_MSC_VER)
# define INLINE __inline