aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2019-12-30 16:28:03 -0500
committerAndy Soffer <asoffer@google.com>2020-01-02 16:49:38 -0500
commit306f3754a71d6d1ac644681d3544d06744914228 (patch)
tree929bb1153a26ed2194043d8a4b7c13e136abad1e /googlemock
parent07ab939af757a4dd2b4506653b025db42419fcd9 (diff)
downloadgoogletest-306f3754a71d6d1ac644681d3544d06744914228.tar.gz
googletest-306f3754a71d6d1ac644681d3544d06744914228.tar.bz2
googletest-306f3754a71d6d1ac644681d3544d06744914228.zip
Googletest export
Explicitly default copy constructor in BoundSecondMatcher Since C++11, implicit defaulting of copy constructors is deprecated for types with user-defined copy assignment operators, so we should explicitly default the copy constructor of BoundSecondMatcher. PiperOrigin-RevId: 287587847
Diffstat (limited to 'googlemock')
-rw-r--r--googlemock/include/gmock/gmock-matchers.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/googlemock/include/gmock/gmock-matchers.h b/googlemock/include/gmock/gmock-matchers.h
index 317d2c9f..67bd7e27 100644
--- a/googlemock/include/gmock/gmock-matchers.h
+++ b/googlemock/include/gmock/gmock-matchers.h
@@ -3169,6 +3169,8 @@ class BoundSecondMatcher {
BoundSecondMatcher(const Tuple2Matcher& tm, const Second& second)
: tuple2_matcher_(tm), second_value_(second) {}
+ BoundSecondMatcher(const BoundSecondMatcher& other) = default;
+
template <typename T>
operator Matcher<T>() const {
return MakeMatcher(new Impl<T>(tuple2_matcher_, second_value_));