summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/gtest-assertion-result.h
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2022-06-16 20:17:57 (GMT)
committerCopybara-Service <copybara-worker@google.com>2022-06-16 20:18:32 (GMT)
commit86add13493e5c881d7e4ba77fb91c1f57752b3a4 (patch)
treeb9a8901984c0d9a46a5415985e04ed948030a787 /googletest/include/gtest/gtest-assertion-result.h
parent191ca1f3a9262b90a586ae2c2e8c742c3d867801 (diff)
downloadgoogletest-86add13493e5c881d7e4ba77fb91c1f57752b3a4.zip
googletest-86add13493e5c881d7e4ba77fb91c1f57752b3a4.tar.gz
googletest-86add13493e5c881d7e4ba77fb91c1f57752b3a4.tar.bz2
Disable warning C4251 around refactored code
PiperOrigin-RevId: 455452553 Change-Id: I1dc3772ae61daf6d2d39484a0b1aad7eb0134525
Diffstat (limited to 'googletest/include/gtest/gtest-assertion-result.h')
-rw-r--r--googletest/include/gtest/gtest-assertion-result.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/googletest/include/gtest/gtest-assertion-result.h b/googletest/include/gtest/gtest-assertion-result.h
index e020c48..addbb59 100644
--- a/googletest/include/gtest/gtest-assertion-result.h
+++ b/googletest/include/gtest/gtest-assertion-result.h
@@ -46,6 +46,9 @@
#include "gtest/gtest-message.h"
#include "gtest/internal/gtest-port.h"
+GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \
+/* class A needs to have dll-interface to be used by clients of class B */)
+
namespace testing {
// A class for indicating whether an assertion was successful. When
@@ -229,4 +232,6 @@ GTEST_API_ AssertionResult AssertionFailure(const Message& msg);
} // namespace testing
+GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251
+
#endif // GOOGLETEST_INCLUDE_GTEST_GTEST_ASSERTION_RESULT_H_