| 168 | |
| 169 | namespace KDevelop { |
| 170 | bool consistsOfWhitespace(QStringView str) |
| 171 | { |
| 172 | return std::all_of(str.cbegin(), str.cend(), [](QChar c) { |
| 173 | return c.isSpace(); |
| 174 | }); |
| 175 | } |
| 176 | |
| 177 | class ParamIteratorPrivate |
| 178 | { |
no outgoing calls
no test coverage detected