aboutsummaryrefslogtreecommitdiff
path: root/common/scummsys.h
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-22 17:10:08 +0000
committerJohannes Schickel2009-09-22 17:10:08 +0000
commitdc8edb7203f0b1da1f01e058b71f7f719050ceed (patch)
tree38d5963b390e43a48ca91001422bca8010bad299 /common/scummsys.h
parent5184f86e150fefba5dc673b846b38049090d8348 (diff)
downloadscummvm-rg350-dc8edb7203f0b1da1f01e058b71f7f719050ceed.tar.gz
scummvm-rg350-dc8edb7203f0b1da1f01e058b71f7f719050ceed.tar.bz2
scummvm-rg350-dc8edb7203f0b1da1f01e058b71f7f719050ceed.zip
Fix warning in gcc 3.3.5, by changing FORCEINLINE definition.
svn-id: r44262
Diffstat (limited to 'common/scummsys.h')
-rw-r--r--common/scummsys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/scummsys.h b/common/scummsys.h
index 2191211afe..4b111b367d 100644
--- a/common/scummsys.h
+++ b/common/scummsys.h
@@ -384,7 +384,7 @@
#define GCC_PRINTF(x,y) __attribute__((__format__(printf, x, y)))
#if !defined(FORCEINLINE) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
- #define FORCEINLINE __attribute__((__always_inline__)) inline
+ #define FORCEINLINE inline __attribute__((__always_inline__))
#endif
#else
#define PACKED_STRUCT