| 1347 | } |
| 1348 | |
| 1349 | static std::vector<const Token*> flattenConditions(const Token* tok) |
| 1350 | { |
| 1351 | return astFlatten(tok, tok->str().c_str()); |
| 1352 | } |
| 1353 | static bool sortConditions(std::vector<const Token*>& conditions) |
| 1354 | { |
| 1355 | if (std::any_of(conditions.begin(), conditions.end(), [](const Token* child) { |
nothing calls this directly
no test coverage detected