1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Add a default copy constructor for -Wdeprecated-copy warnings.

This commit is contained in:
Eric Christopher 2019-12-05 14:16:04 -08:00
parent d1bbf04c1e
commit 9609ff5a8c

View File

@ -3589,6 +3589,8 @@ class BoundSecondMatcher {
GTEST_LOG_(FATAL) << "BoundSecondMatcher should never be assigned.";
}
BoundSecondMatcher(const BoundSecondMatcher &) = default;
private:
template <typename T>
class Impl : public MatcherInterface<T> {