| 774 | |
| 775 | template <typename CHAR, typename NEXT> |
| 776 | static void EatWildcard(const CHAR** pattern, const CHAR* end, NEXT next) { |
| 777 | while (*pattern != end) { |
| 778 | if (!IsWildcard(**pattern)) |
| 779 | return; |
| 780 | next(pattern, end); |
| 781 | } |
| 782 | } |
| 783 | |
| 784 | template <typename CHAR, typename NEXT> |
| 785 | static bool MatchPatternT(const CHAR* eval, const CHAR* eval_end, |
no test coverage detected