Add a fix for the inline keyword on the osf os.

This commit is contained in:
Bill Hoffman 2010-09-10 13:37:02 -04:00
parent bd56626a4a
commit 92c082b1c9
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@
*/
#if defined(__WATCOMC__) || defined(__sgi) || defined(__hpux) || defined(__BORLANDC__) || defined(__SUNPRO_C)
#define inline
#elif defined(_MSC_VER)
#elif defined(_MSC_VER) || defined(__osf__)
#define inline __inline
#endif