diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-25 18:25:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-25 18:25:49 +0000 |
commit | 4fa1f6cc5c94b3e53c8bd8cfcaa488ec8215f961 (patch) | |
tree | 4a4f995e841a67f928e516841c9a7563c73bbc83 /libavutil | |
parent | 53d1bdbaed7fde46294a376f9e54a2add63c95f8 (diff) | |
download | ffmpeg-4fa1f6cc5c94b3e53c8bd8cfcaa488ec8215f961.tar.gz |
Make code C conformant.
Originally committed as revision 12217 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/mem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h index 4898b085af..c39cce6629 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -36,7 +36,7 @@ #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v #else - #warning No align and asm directives, this might fail. +// #warning No align and asm directives, this might fail. #define DECLARE_ALIGNED(n,t,v) t v #define DECLARE_ASM_CONST(n,t,v) static const t v #endif |