Commit trivial fix to MZ_DO_NOT_INLINE to enable compilation on OS X 10.5. Previously it would fail with error message along the lines of "MZ_DO_NOT_INLINE given one argument but takes zero".

svn: r14261
This commit is contained in:
Noel Welsh 2009-03-25 09:01:20 +00:00
parent 61599e89df
commit 9f6c90c5e8

View File

@ -107,7 +107,7 @@ int scheme_num_types(void);
#if MZ_USE_NOINLINE
# define MZ_DO_NOT_INLINE(decl) decl __attribute__ ((noinline));
#else
# define MZ_DO_NOT_INLINE()
# define MZ_DO_NOT_INLINE(decl)
#endif