| 101 | } |
| 102 | |
| 103 | CelValueMatcher IsCelBool(testing::Matcher<bool> m) { |
| 104 | return CelValueMatcher(new CelValueMatcherImpl<bool>(std::move(m))); |
| 105 | } |
| 106 | |
| 107 | CelValueMatcher IsCelInt64(testing::Matcher<int64_t> m) { |
| 108 | return CelValueMatcher(new CelValueMatcherImpl<int64_t>(std::move(m))); |
no outgoing calls