| 296 | // //////////////////////////////// |
| 297 | |
| 298 | bool Reader::containsNewLine(Reader::Location begin, Reader::Location end) { |
| 299 | for (; begin < end; ++begin) |
| 300 | if (*begin == '\n' || *begin == '\r') |
| 301 | return true; |
| 302 | return false; |
| 303 | } |
| 304 | |
| 305 | // Class Reader |
| 306 | // ////////////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected