| 385 | // Helper function for CHECK_xx. |
| 386 | template <typename LHS, typename RHS> |
| 387 | constexpr EagerEvaluator<LHS, RHS> MakeEagerEvaluator(LHS lhs, RHS rhs) { |
| 388 | return EagerEvaluator<LHS, RHS>(lhs, rhs); |
| 389 | } |
| 390 | |
| 391 | // Explicitly instantiate EagerEvalue for pointers so that char*s aren't treated |
| 392 | // as strings. To compare strings use CHECK_STREQ and CHECK_STRNE. We rely on |
nothing calls this directly
no outgoing calls
no test coverage detected