| 73 | // delimiter is 1. |
| 74 | struct AnyOfPolicy { |
| 75 | size_t Find(StringPiece text, StringPiece delimiter) { |
| 76 | return text.find_first_of(delimiter); |
| 77 | } |
| 78 | int Length(StringPiece delimiter) { |
| 79 | return 1; |
| 80 | } |
nothing calls this directly
no test coverage detected