"git@developer.sourcefind.cn:yangql/googletest.git" did not exist on "a41c3d0fb80c4558aa3799f262a7cfd67f32c468"
Commit cf4f4400 authored by Abseil Team's avatar Abseil Team Committed by Copybara-Service
Browse files

Suppress std::string DLL interface warning introduced in commit...

Suppress std::string DLL interface warning introduced in commit f063cd25

Fixes #4171

PiperOrigin-RevId: 514777144
Change-Id: I6f4b309c407684522fc1bc94dcc980ea1fe09cd9
parent 1a727c27
...@@ -960,6 +960,8 @@ class GTEST_API_ RE { ...@@ -960,6 +960,8 @@ class GTEST_API_ RE {
}; };
#elif defined(GTEST_USES_POSIX_RE) || defined(GTEST_USES_SIMPLE_RE) #elif defined(GTEST_USES_POSIX_RE) || defined(GTEST_USES_SIMPLE_RE)
GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \
/* class A needs to have dll-interface to be used by clients of class B */)
// A simple C++ wrapper for <regex.h>. It uses the POSIX Extended // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
// Regular Expression syntax. // Regular Expression syntax.
...@@ -1008,7 +1010,7 @@ class GTEST_API_ RE { ...@@ -1008,7 +1010,7 @@ class GTEST_API_ RE {
#endif #endif
}; };
GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251
#endif // ::testing::internal::RE implementation #endif // ::testing::internal::RE implementation
// Formats a source file path and a line number as they would appear // Formats a source file path and a line number as they would appear
......
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