summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2019-04-11 19:59:46 (GMT)
committerGennadiy Civil <misterg@google.com>2019-04-11 19:59:46 (GMT)
commitadc8a88ff0c5c85413d37af20343faa6c197abad (patch)
tree0abfef6ee439ff1f6a7fa10ad9250ebf03de0830 /googletest
parentea9c49b9cd410cca4df39b376f7da7cddf2dcf6d (diff)
parent8e9297b503d6206b16389c756fde80f2cb2db6f4 (diff)
downloadgoogletest-adc8a88ff0c5c85413d37af20343faa6c197abad.zip
googletest-adc8a88ff0c5c85413d37af20343faa6c197abad.tar.gz
googletest-adc8a88ff0c5c85413d37af20343faa6c197abad.tar.bz2
Merge pull request #2226 from davidben:msvc-5046
PiperOrigin-RevId: 243121568
Diffstat (limited to 'googletest')
-rw-r--r--googletest/include/gtest/gtest-matchers.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/googletest/include/gtest/gtest-matchers.h b/googletest/include/gtest/gtest-matchers.h
index bf500fc..6e73ba1 100644
--- a/googletest/include/gtest/gtest-matchers.h
+++ b/googletest/include/gtest/gtest-matchers.h
@@ -47,9 +47,16 @@
#include "gtest/internal/gtest-internal.h"
#include "gtest/internal/gtest-port.h"
+// MSVC warning C5046 is new as of VS2017 version 15.8.
+#if defined(_MSC_VER) && _MSC_VER >= 1915
+#define GTEST_MAYBE_5046_ 5046
+#else
+#define GTEST_MAYBE_5046_
+#endif
+
GTEST_DISABLE_MSC_WARNINGS_PUSH_(
- 4251 5046 /* class A needs to have dll-interface to be used by clients of
- class B */
+ 4251 GTEST_MAYBE_5046_ /* class A needs to have dll-interface to be used by
+ clients of class B */
/* Symbol involving type with internal linkage not defined */)
namespace testing {