1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

__attribute__((unused)) works with gcc 2.95 too

Originally committed as revision 7421 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Luca Abeni 2007-01-07 11:11:49 +00:00
parent e5f94c2b2c
commit 40628be0ed

View File

@ -35,7 +35,7 @@
#endif
#ifndef attribute_unused
#if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
#if defined(__GNUC__)
# define attribute_unused __attribute__((unused))
#else
# define attribute_unused