From 9f6c90c5e84026f93ba4bc39fffd5272e27b4d8e Mon Sep 17 00:00:00 2001 From: Noel Welsh Date: Wed, 25 Mar 2009 09:01:20 +0000 Subject: [PATCH] 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 --- src/mzscheme/src/schpriv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mzscheme/src/schpriv.h b/src/mzscheme/src/schpriv.h index a37bd4b790..d99feaebc9 100644 --- a/src/mzscheme/src/schpriv.h +++ b/src/mzscheme/src/schpriv.h @@ -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