think of it like a lambda in C++98 ;) but look, I will reuse it two times! What a good boy am I.
| 3774 | // but look, I will reuse it two times! |
| 3775 | // What a good boy am I. |
| 3776 | struct isspace { |
| 3777 | bool operator()(char c) { return std::isspace(c); } |
| 3778 | }; |
| 3779 | |
| 3780 | bool started = false; |
| 3781 | for (; line_idx < line_start + line_count; ++line_idx) { |
no outgoing calls