Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
a0fd7426
Commit
a0fd7426
authored
Apr 18, 2018
by
Gennadiy Civil
Browse files
msvc
parent
b00e2810
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
googlemock/test/gmock-matchers_test.cc
googlemock/test/gmock-matchers_test.cc
+6
-8
No files found.
googlemock/test/gmock-matchers_test.cc
View file @
a0fd7426
...
...
@@ -33,11 +33,13 @@
//
// This file tests some commonly used argument matchers.
// Disable MSVC201
5
warning for std::pair:
// Disable MSVC201
4
warning for std::pair:
// "decorated name length exceeded, name was truncated".
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable:4503)
ifdef
_MSC_VER
#if _MSC_VER < 1900
# pragma warning(push)
# pragma warning(disable:4503)
#endif
#endif
#include "gmock/gmock-matchers.h"
...
...
@@ -6735,7 +6737,3 @@ TEST(NotTest, WorksOnMoveOnlyType) {
}
// namespace gmock_matchers_test
}
// namespace testing
#ifdef _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