| 105 | } |
| 106 | |
| 107 | CelValueMatcher IsCelInt64(testing::Matcher<int64_t> m) { |
| 108 | return CelValueMatcher(new CelValueMatcherImpl<int64_t>(std::move(m))); |
| 109 | } |
| 110 | |
| 111 | CelValueMatcher IsCelUint64(testing::Matcher<uint64_t> m) { |
| 112 | return CelValueMatcher(new CelValueMatcherImpl<uint64_t>(std::move(m))); |
no outgoing calls