| 5319 | } |
| 5320 | |
| 5321 | bool isNotKnownValues(const char code[], const char str[]) { |
| 5322 | const auto& values = tokenValues(code, str); |
| 5323 | return std::none_of(values.cbegin(), values.cend(), [](const ValueFlow::Value& v) { |
| 5324 | return v.isKnown(); |
| 5325 | }); |
| 5326 | } |
| 5327 | |
| 5328 | void knownValue() { |
| 5329 | const char *code; |