This commit is contained in:
Gennadiy Civil
2018-04-09 13:51:01 -04:00
parent c4684b49cf
commit e93a0ece26
2 changed files with 13 additions and 12 deletions

View File

@@ -33,6 +33,13 @@
//
// This file tests the built-in actions.
#ifdef _MSC_VER
#if _MSC_VER <= 1900
# pragma warning(push)
# pragma warning(disable:4800)
#endif
#endif
#include "gmock/gmock-actions.h"
#include <algorithm>
#include <iterator>
@@ -1556,3 +1563,9 @@ TEST(MoveOnlyArgumentsTest, ReturningActions) {
#endif // GTEST_LANG_CXX11
} // Unnamed namespace
#ifdef _MSC_VER
#if _MSC_VER == 1900
# pragma warning(pop)
#endif
#endif