The branch, master has been updated
via f40766da45642cfe2783c188dacac3f81898ec23 (commit)
from 2c8835dd72d70ef3e61f85695d8cf4e404779991 (commit)
- Log -----------------------------------------------------------------
commit f40766da45642cfe2783c188dacac3f81898ec23
Author: Kacper MichajÅow <[email protected]>
AuthorDate: Thu Sep 25 18:19:29 2025 +0200
Commit: Kacper MichajÅow <[email protected]>
CommitDate: Thu Sep 25 18:02:44 2025 +0000
configure: suppress C4267 warnings from MSVC
Suppresses implicit integer conversion narrowing warnings:
warning C4267: 'initializing': conversion from 'size_t' to 'int', possible
loss of data
Those implicit conversions are abundant in ffmpeg's code base.
Additionally equivalent warnings are not enabled for GCC/Clang by
default, so they are mostly left unfixed.
Suppress reports about them to reduce noise in MSVC build log.
Signed-off-by: Kacper MichajÅow <[email protected]>
diff --git a/configure b/configure
index c4e16ff97e..a01f0fbba4 100755
--- a/configure
+++ b/configure
@@ -5020,7 +5020,7 @@ msvc_flags(){
for flag; do
case $flag in
-Wall) echo -W3 -wd4018 -wd4146 -wd4244 -wd4305
\
- -wd4554 ;;
+ -wd4554 -wd4267 ;;
-Wextra) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389
\
-wd4146 -wd4057 -wd4204 -wd4706 -wd4305
\
-wd4152 -wd4324 -we4013 -wd4100 -wd4214
\
-----------------------------------------------------------------------
Summary of changes:
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]