From: cypherpunks Date: Thu, 10 Dec 2015 15:26:04 +0000 (+0100) Subject: Remove obsolete INLINE preprocessor definition X-Git-Tag: tor-0.2.8.1-alpha~148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e91ccbb4f6e7330aa7097f31dcf07cbfda87b75b;p=thirdparty%2Ftor.git Remove obsolete INLINE preprocessor definition The INLINE keyword is not used anymore in favor of inline. Windows only supports __inline so an inline preprocessor definition is still needed. --- diff --git a/src/common/compat.h b/src/common/compat.h index edc41eb374..fb177832af 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -75,9 +75,7 @@ /* inline is __inline on windows. */ #ifdef _WIN32 -#define INLINE __inline -#else -#define INLINE inline +#define inline __inline #endif /* Try to get a reasonable __func__ substitute in place. */