summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-17 21:28:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-17 21:28:02 +0100
commit1d9c6042e89c6a688b0b9392e627d8c65de63d74 (patch)
tree8b42ce9ea0ad2f0c5fcfe38ae9021de187bdb3b8 /solenv
parent08e18475c39f9fd79aea47c37afaf92734bb727d (diff)
More blind fix attempt for MSVC
Change-Id: Ic3374bbf71cd7975ce1523a5a9ab47e57f5aad51
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gbuild/platform/com_MSC_defs.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/solenv/gbuild/platform/com_MSC_defs.mk b/solenv/gbuild/platform/com_MSC_defs.mk
index db6ec22ab3ff..5e7c2e689438 100644
--- a/solenv/gbuild/platform/com_MSC_defs.mk
+++ b/solenv/gbuild/platform/com_MSC_defs.mk
@@ -120,6 +120,8 @@ gb_AFLAGS := $(AFLAGS)
# C4512: 'class' : assignment operator could not be generated
# (an issue with MSVC 2013 that appears to be gone with MSVC 2015)
+# C4610: 'class' can never be instantiated - user defined constructor required
+
# C4611: interaction between 'function' and C++ object destruction is
# non-portable
@@ -190,6 +192,7 @@ gb_CXXFLAGS := \
-wd4505 \
-wd4510 \
-wd4512 \
+ -wd4610 \
-wd4611 \
-wd4706 \
-wd4800 \