diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-09-18 18:38:16 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-09-18 18:38:16 +0200 |
commit | 9e208ce6dd94596b4185a93af4aab3dcd28eb5b7 (patch) | |
tree | 9bebcb624f30188558ff40d5b9a46ceefe58336c | |
parent | 0b2ac679e20c46d7f1b999b3fa76e2f9601459c5 (diff) | |
download | ffmpeg-9e208ce6dd94596b4185a93af4aab3dcd28eb5b7.tar.gz |
Silence warning C4554 when compiling with msvc.
warning C4554: '>>' : check operator precedence for possible error; use parentheses to clarify precedence
Reviewed-by: Derek Buitenhuis
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2384,7 +2384,7 @@ msvc_flags(){ -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \ -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \ -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \ - -wd4996 ;; + -wd4996 -wd4554 ;; -std=c99) ;; -fno-math-errno) ;; -fno-common) ;; |