GCC does not have "inline" extension when invoked in ANSI mode.

This commit is contained in:
jgarcia 2008-05-09 07:46:46 +00:00
parent c78e75366e
commit 18e312f30a

View file

@ -74,7 +74,7 @@ member_string_eq(cl_object x, cl_object l)
return FALSE;
}
#if defined(__cplusplus) || defined(__GNUC__)
#if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
#define INLINE inline
#else
#define INLINE