From eb5556548d07caefbeb3d333350a71dc1dca1d61 Mon Sep 17 00:00:00 2001 From: castano Date: Tue, 5 Feb 2013 18:35:38 +0000 Subject: [PATCH] Fix issue 186. Confirmed it works on gcc and clang. --- src/nvcore/DefsGnucDarwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvcore/DefsGnucDarwin.h b/src/nvcore/DefsGnucDarwin.h index b228840..cc1de77 100644 --- a/src/nvcore/DefsGnucDarwin.h +++ b/src/nvcore/DefsGnucDarwin.h @@ -25,7 +25,7 @@ #endif #define NV_FASTCALL __attribute__((fastcall)) -#define NV_FORCEINLINE __attribute__((always_inline)) +#define NV_FORCEINLINE __attribute__((always_inline)) inline #define NV_DEPRECATED __attribute__((deprecated)) #if __GNUC__ > 2