summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-08-15 20:03:27 +0200
committerDiego Biurrun <diego@biurrun.de>2014-08-21 17:55:28 +0200
commitb0bfd09f88da8b7c7666faf0ac7d5e74559dba9f (patch)
tree03c5ab851caeac366a143d1c127a4cfb5aee5d2a /configure
parent13c90bc9a359e969cc2b7f7e8199b02a0e4c6ec9 (diff)
configure: Suppress "potentially uninitialized variable" warnings from MSVC
The same is done for GCC and clang already.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index c073f30b11..db3ee364dd 100755
--- a/configure
+++ b/configure
@@ -2688,7 +2688,7 @@ msvc_flags(){
-Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
-wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
-wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
- -wd4273 ;;
+ -wd4273 -wd4701 ;;
esac
done
}