summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-11-22 08:18:38 +0100
committerDiego Biurrun <diego@biurrun.de>2016-11-24 16:14:33 +0100
commit5bcc6f76f180d0f88269018727c92fc562fb8abb (patch)
tree9524d75147f0ae52bff7077f257df4aa4bd96ab2 /configure
parentbd9cd04626a98a752c5771d057a6b86779359904 (diff)
configure: Disable warning C4703 with MSVC
This disables warnings about potentially uninitialized local pointer variables. Disabling the warning is in line with what we do for gcc.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index beab6ba687..42c1848778 100755
--- a/configure
+++ b/configure
@@ -3056,7 +3056,7 @@ msvc_flags(){
-Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
-wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
-wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
- -wd4273 -wd4554 -wd4701 ;;
+ -wd4273 -wd4554 -wd4701 -wd4703 ;;
esac
done
}