[FFmpeg-cvslog] configure: Silence warnings about constant unsigned overflows in MSVC

Michael Niedermayer git at videolan.org
Fri Mar 20 15:54:56 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Mar 16 15:31:57 2015 +0100| [e8446a685077b071361cc997116c315c68ef8da3] | committer: Michael Niedermayer

configure: Silence warnings about constant unsigned overflows in MSVC

unsigned overflows are well defined in C and used for example in crypto
and various other places.
None of the affected warnings currently shown points to an actual defect

untested

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e8446a685077b071361cc997116c315c68ef8da3
---

 configure |    1 +
 1 file changed, 1 insertion(+)

diff --git a/configure b/configure
index 1ef83e3..4827a4d 100755
--- a/configure
+++ b/configure
@@ -3260,6 +3260,7 @@ msvc_flags(){
             -Wall)                echo -W4 -wd4244 -wd4127 -wd4018 -wd4389     \
                                        -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
                                        -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
+                                       -wd4307 \
                                        -wd4273 -wd4554 -wd4701 ;;
         esac
     done



More information about the ffmpeg-cvslog mailing list