Kaydet (Commit) 902a65ff authored tarafından Luboš Luňák's avatar Luboš Luňák

now that we detect msvc supports 'override', do not warn about it

Change-Id: I127f6756bae786c41122174b615c607b2c3b7ec4
üst 443c13e9
......@@ -101,6 +101,9 @@ gb_AFLAGS := $(AFLAGS)
# of the compiler did not override when parameters only differed by
# const/volatile qualifiers.
# C4481: nonstandard extension used: override specifier 'override'
# (MSVC 2010 warns about this, even though it's C++11 keyword)
# C4505: 'function' : unreferenced local function has been removed
# C4512: 'class' : assignment operator could not be generated
......@@ -165,6 +168,7 @@ gb_CXXFLAGS := \
-wd4351 \
-wd4355 \
-wd4373 \
-wd4481 \
-wd4505 \
-wd4512 \
-wd4611 \
......
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