Kaydet (Commit) b5751caa authored tarafından Tor Lillqvist's avatar Tor Lillqvist Kaydeden (comit) Tor Lillqvist

Disable also C4913: user defined binary operator ',' exists but ...

MSVC generates the warning "user defined binary operator ',' exists
but no overload could convert all operands, default built-in binary
operator ',' used" when iterators from newer Boost are combined with
comma expressions, as in for() statements. Or something like that.

Change-Id: I3225d07ad0d1e05f4deeb784cf2ec081748b1ab4
üst 74943b31
......@@ -126,6 +126,9 @@ gb_AFLAGS := $(AFLAGS)
# C4800: 'type' : forcing value to bool 'true' or 'false' (performance
# warning)
# C4913: user defined binary operator ',' exists but no overload could
# convert all operands, default built-in binary operator ',' used
# C4996: 'function': was declared deprecated
# Also generated for C++ library functions that "may be unsafe"
......@@ -177,6 +180,7 @@ gb_CXXFLAGS := \
-wd4611 \
-wd4706 \
-wd4800 \
-wd4913 \
-Zc:forScope,wchar_t- \
-Zm500 \
......
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