Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
62a7c140
Commit
62a7c140
authored
Apr 19, 2018
by
Gennadiy Civil
Browse files
testing
parent
f3124350
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
googlemock/test/gmock-matchers_test.cc
googlemock/test/gmock-matchers_test.cc
+12
-12
No files found.
googlemock/test/gmock-matchers_test.cc
View file @
62a7c140
...
...
@@ -33,15 +33,6 @@
//
// This file tests some commonly used argument matchers.
// Disable MSVC2014 warning for std::pair:
// "decorated name length exceeded, name was truncated".
#ifdef _MSC_VER
#if _MSC_VER < 1900
# pragma warning(push)
# pragma warning(disable:4503)
#endif
#endif
#include "gmock/gmock-matchers.h"
#include "gmock/gmock-more-matchers.h"
...
...
@@ -68,6 +59,13 @@
# include <forward_list> // NOLINT
#endif
// Disable MSVC2015 warning for std::pair:
// "decorated name length exceeded, name was truncated".
#if defined _MSC_VER
# pragma warning(push)
# pragma warning(disable:4503)
#endif
#if GTEST_LANG_CXX11
# include <type_traits>
#endif
...
...
@@ -756,8 +754,6 @@ TEST(MatcherCastTest, NonImplicitlyConstructibleTypeWithOperatorEq) {
// No constructor could take the source type, or constructor overload
// resolution was ambiguous
#if !defined _MSC_VER
// The below ConvertibleFromAny struct is implicitly constructible from anything
// and when in the same namespace can interact with other tests. In particular,
// if it is in the same namespace as other tests and one removes
...
...
@@ -798,7 +794,6 @@ TEST(MatcherCastTest, FromConvertibleFromAny) {
}
} // namespace convertible_from_any
#endif // !defined _MSC_VER
struct IntReferenceWrapper {
IntReferenceWrapper(const int& a_value) : value(&a_value) {}
...
...
@@ -6737,3 +6732,8 @@ TEST(NotTest, WorksOnMoveOnlyType) {
} // namespace gmock_matchers_test
} // namespace testing
#if defined _MSC_VER
# pragma warning(pop)
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment