diff options
author | Gennadiy Civil <misterg@google.com> | 2018-02-13 11:15:03 -0500 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-02-13 11:15:03 -0500 |
commit | d7c966c4defea40b5f161999e2a6dab9cca9d540 (patch) | |
tree | cb3d08c026f66b2cc4ba64c33a3cf1ce77954908 | |
parent | 2a23ca00092bbb9c31d7a7b6fa9519bf2d8c70c7 (diff) | |
download | googletest-d7c966c4defea40b5f161999e2a6dab9cca9d540.tar.gz googletest-d7c966c4defea40b5f161999e2a6dab9cca9d540.tar.bz2 googletest-d7c966c4defea40b5f161999e2a6dab9cca9d540.zip |
clang warnings
-rw-r--r-- | googletest/test/gtest-param-test_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/test/gtest-param-test_test.cc b/googletest/test/gtest-param-test_test.cc index 9d970d2e..5f6d946b 100644 --- a/googletest/test/gtest-param-test_test.cc +++ b/googletest/test/gtest-param-test_test.cc @@ -893,8 +893,8 @@ TEST_P(CustomLambdaNamingTest, CustomTestNames) {} INSTANTIATE_TEST_CASE_P(CustomParamNameLambda, CustomLambdaNamingTest, Values(std::string("LambdaName")), - [](const ::testing::TestParamInfo<std::string>& info) { - return info.param; + [](const ::testing::TestParamInfo<std::string>& inf) { + return inf.param; }); #endif // GTEST_LANG_CXX11 |