think of it like a lambda in C++98 ;) but look, I will reuse it two times! What a good boy am I.
| 3735 | // but look, I will reuse it two times! |
| 3736 | // What a good boy am I. |
| 3737 | struct isspace { |
| 3738 | bool operator()(char c) { return std::isspace(c); } |
| 3739 | }; |
| 3740 | |
| 3741 | bool started = false; |
| 3742 | for (; line_idx < line_start + line_count; ++line_idx) { |
no outgoing calls
no test coverage detected