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
This commit is contained in:
parent
74943b31e8
commit
b5751caa1c
1 changed files with 4 additions and 0 deletions
|
@ -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 \
|
||||
|
||||
|
|
Loading…
Reference in a new issue