aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-04-04 15:29:05 -0400
committerGennadiy Civil <misterg@google.com>2018-04-04 15:29:05 -0400
commit6f4e93943a9e24e7bd619e76e68c513b7a992780 (patch)
tree0b4ef45666ee0b47545c72f55190273fc085a884 /googlemock
parent5b3d27729b118f2c8b5e74039409db0c517651fa (diff)
downloadgoogletest-6f4e93943a9e24e7bd619e76e68c513b7a992780.tar.gz
googletest-6f4e93943a9e24e7bd619e76e68c513b7a992780.tar.bz2
googletest-6f4e93943a9e24e7bd619e76e68c513b7a992780.zip
More on MSVC warning C4503, decorated name length exceeded
Diffstat (limited to 'googlemock')
-rw-r--r--googlemock/test/gmock-matchers_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/test/gmock-matchers_test.cc b/googlemock/test/gmock-matchers_test.cc
index 62defe56..190cedd0 100644
--- a/googlemock/test/gmock-matchers_test.cc
+++ b/googlemock/test/gmock-matchers_test.cc
@@ -5382,6 +5382,7 @@ INSTANTIATE_TEST_CASE_P(AllGraphs, BipartiteTest,
::testing::Range(0, 5));
// Parameterized by a pair interpreted as (LhsSize, RhsSize).
+GTEST_DISABLE_MSC_WARNINGS_PUSH_(4503)
class BipartiteNonSquareTest
: public ::testing::TestWithParam<std::pair<size_t, size_t> > {
};
@@ -5459,7 +5460,6 @@ TEST_P(BipartiteRandomTest, LargerNets) {
}
// Test argument is a std::pair<int, int> representing (nodes, iters).
-GTEST_DISABLE_MSC_WARNINGS_PUSH_(4503)
INSTANTIATE_TEST_CASE_P(Samples, BipartiteRandomTest,
testing::Values(
std::make_pair(5, 10000),