diff options
author | Abseil Team <absl-team@google.com> | 2018-11-20 10:37:46 -0500 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-11-20 13:30:16 -0500 |
commit | 64368e0584e03bac626a1a431afe2982117a6e17 (patch) | |
tree | 78a668bc3eb80cc27ce45373fbf7b7d4dcf4104e | |
parent | bb7c0ecbdf47a5c61d212cbfd2177bf3bf18479b (diff) | |
download | googletest-64368e0584e03bac626a1a431afe2982117a6e17.tar.gz googletest-64368e0584e03bac626a1a431afe2982117a6e17.tar.bz2 googletest-64368e0584e03bac626a1a431afe2982117a6e17.zip |
Googletest export
Remove redundant Base/Derived types.
PiperOrigin-RevId: 222243634
-rw-r--r-- | googlemock/test/gmock-actions_test.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/googlemock/test/gmock-actions_test.cc b/googlemock/test/gmock-actions_test.cc index 976f56d7..ccfb5197 100644 --- a/googlemock/test/gmock-actions_test.cc +++ b/googlemock/test/gmock-actions_test.cc @@ -1146,8 +1146,6 @@ TEST(WithArgsTest, ReturnReference) { } TEST(WithArgsTest, InnerActionWithConversion) { - struct Base {}; - struct Derived : Base {}; Action<Derived*()> inner = [] { return nullptr; }; Action<Base*(double)> a = testing::WithoutArgs(inner); EXPECT_EQ(nullptr, a.Perform(std::make_tuple(1.1))); |