small cleanup

This commit is contained in:
Gennadiy Civil
2018-04-12 09:12:02 -04:00
parent 373481c5a9
commit e77deb29a6
2 changed files with 15 additions and 1 deletions

View File

@@ -62,6 +62,7 @@
// Disable MSVC2015 warning for std::pair:
// "decorated name length exceeded, name was truncated".
#if defined(_MSC_VER) && (_MSC_VER == 1900)
# pragma warning(push)
# pragma warning(disable:4503)
#endif
@@ -6656,7 +6657,7 @@ TEST(AnyWithTest, TestUseInContainers) {
AnyWith<std::string>("merhaba"),
AnyWith<std::string>("salut")}));
}
#endif // GTEST_LANG_CXX11
#endif // GTEST_LANG_CXX11
TEST(AnyWithTest, TestCompare) {
EXPECT_THAT(SampleAnyType(1), AnyWith<int>(Gt(0)));
}
@@ -6694,3 +6695,8 @@ TEST(NotTest, WorksOnMoveOnlyType) {
} // namespace gmock_matchers_test
} // namespace testing
#if defined(_MSC_VER) && (_MSC_VER == 1900)
# pragma warning(pop)
#endif