Commit 9e208ce6 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Silence warning C4554 when compiling with msvc.

warning C4554: '>>' : check operator precedence for possible error; use parentheses to clarify precedence

Reviewed-by: Derek Buitenhuis
parent 0b2ac679
......@@ -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) ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment