RE-Doing the merge, this time with gcc on mac in the PR so I can catch errors before merging the PR

This commit is contained in:
Gennadiy Civil
2018-04-10 15:57:16 -04:00
parent d0de1180e4
commit e1071eb949
10 changed files with 346 additions and 96 deletions

View File

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