summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2015-03-15 15:55:03 +0100
committerDiego Biurrun <diego@biurrun.de>2015-03-17 11:59:31 +0100
commit91894f27dce531c13d7e1be20253877f2e1e9e66 (patch)
treea9625104d036bd59cd4089cc6bfa6dab4e3cf3d2 /configure
parent2cb9c2fc59c9267ad2631c07c81c188058502259 (diff)
configure: Disable shift operator precedence warnings with MSVC
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 7340844b93..3c38a8c410 100755
--- a/configure
+++ b/configure
@@ -2736,7 +2736,7 @@ msvc_flags(){
-Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
-wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
-wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
- -wd4273 -wd4701 ;;
+ -wd4273 -wd4554 -wd4701 ;;
esac
done
}