This commit is contained in:
Gennadiy Civil
2018-04-10 16:10:34 -04:00
9 changed files with 33 additions and 260 deletions

View File

@@ -82,12 +82,11 @@
namespace testing {
// Silence C4100 (unreferenced formal parameter) and 4805
// unsafe mix of type 'const int' and type 'const bool'
// Silence C4100 (unreferenced formal parameter) for MSVC
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable:4100)
# pragma warning(disable:4805)
# pragma warning(disable:4100)
#endif
@@ -2308,7 +2307,7 @@ bool StaticAssertTypeEq() {
GTEST_API_ std::string TempDir();
#ifdef _MSC_VER
# pragma warning(pop)
# pragma warning(pop)
#endif
} // namespace testing