aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/include/gmock/gmock-more-matchers.h
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-04-09 22:10:12 -0400
committerGitHub <noreply@github.com>2018-04-09 22:10:12 -0400
commitca54b673034f6f182ff22ac554efcd1176f5808c (patch)
tree5ee7b5cef61b4b0c0c2fb904ea62444ae7d71709 /googlemock/include/gmock/gmock-more-matchers.h
parent7f03f7ceae05d4d45fc4b12b81736c55a13d872c (diff)
downloadgoogletest-ca54b673034f6f182ff22ac554efcd1176f5808c.tar.gz
googletest-ca54b673034f6f182ff22ac554efcd1176f5808c.tar.bz2
googletest-ca54b673034f6f182ff22ac554efcd1176f5808c.zip
Revert "gmock actions 2"
Diffstat (limited to 'googlemock/include/gmock/gmock-more-matchers.h')
-rw-r--r--googlemock/include/gmock/gmock-more-matchers.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/googlemock/include/gmock/gmock-more-matchers.h b/googlemock/include/gmock/gmock-more-matchers.h
index 6d810eb7..01298cfa 100644
--- a/googlemock/include/gmock/gmock-more-matchers.h
+++ b/googlemock/include/gmock/gmock-more-matchers.h
@@ -46,11 +46,8 @@ namespace testing {
// Silence C4100 (unreferenced formal
// parameter) for MSVC
#ifdef _MSC_VER
-# pragma warning(push)
# pragma warning(disable:4100)
#if (_MSC_VER == 1900)
-// and silence C4800 (C4800: 'int *const ': forcing value
-// to bool 'true' or 'false') for MSVC 14
# pragma warning(disable:4800)
#endif
#endif
@@ -81,11 +78,6 @@ MATCHER(IsFalse, negation ? "is true" : "is false") {
return !static_cast<bool>(arg);
}
-#ifdef _MSC_VER
-# pragma warning(pop)
-#endif
-
-
} // namespace testing
#endif // GMOCK_GMOCK_MORE_MATCHERS_H_