diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-30 22:03:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-30 22:03:32 +0300 |
commit | 1d0044cbc81e547ad688a295288910d58e1a3fb1 (patch) | |
tree | 0a4575b8ff5f76b571891ea0f30df02fe61f4f29 /src/guichan/widgets/tab.hpp | |
parent | b82ee801506790283d2f03060949bb5089086de8 (diff) | |
download | mv-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.gz mv-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.bz2 mv-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.xz mv-1d0044cbc81e547ad688a295288910d58e1a3fb1.zip |
Fix compilation warnings after guichan integration.
Remove temp file.
Diffstat (limited to 'src/guichan/widgets/tab.hpp')
-rw-r--r-- | src/guichan/widgets/tab.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/guichan/widgets/tab.hpp b/src/guichan/widgets/tab.hpp index bf89afccb..d123bac15 100644 --- a/src/guichan/widgets/tab.hpp +++ b/src/guichan/widgets/tab.hpp @@ -51,6 +51,12 @@ #include "guichan/mouselistener.hpp" #include "guichan/platform.hpp" +#ifdef __GNUC__ +#define _UNUSED_ __attribute__ ((unused)) +#else +#define _UNUSED_ +#endif + namespace gcn { class Label; |