Commit ef7e3481 authored by lucabe's avatar lucabe

__attribute__((unused)) works with gcc 2.95 too


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7421 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 89ebafc8
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment