| 520 | |
| 521 | template<typename ForwardIt> |
| 522 | void skipWhitespace(ForwardIt& first, ForwardIt last) |
| 523 | { |
| 524 | first = std::find_if_not(first, last, [](QChar c) { |
| 525 | return c.isSpace(); |
| 526 | }); |
| 527 | } |
| 528 | |
| 529 | template<typename ForwardIt> |
| 530 | struct FindResult |
no outgoing calls
no test coverage detected