mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-02 07:30:55 -08:00
GCC does not have "inline" extension when invoked in ANSI mode.
This commit is contained in:
parent
c78e75366e
commit
18e312f30a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue