| 7445 | // This generic version is used when k is 0. |
| 7446 | template <typename T, typename U> |
| 7447 | inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } |
| 7448 | |
| 7449 | // This overload is used when k >= 1. |
| 7450 | template <typename T, typename U, size_t N> |
no outgoing calls
no test coverage detected