| 289 | operator testing::Matcher<Res>() const { // NOLINT runtime/explicit |
| 290 | struct Impl : testing::MatcherInterface<const Res&> { |
| 291 | void DescribeTo(::std::ostream* os) const override { *os << "is ok"; } |
| 292 | |
| 293 | void DescribeNegationTo(::std::ostream* os) const override { *os << "is not ok"; } |
| 294 |
no outgoing calls