| 2526 | } |
| 2527 | |
| 2528 | bool Token::hasKnownValue() const |
| 2529 | { |
| 2530 | return mImpl->mValues && std::any_of(mImpl->mValues->begin(), mImpl->mValues->end(), std::mem_fn(&ValueFlow::Value::isKnown)); |
| 2531 | } |
| 2532 | |
| 2533 | bool Token::hasKnownValue(ValueFlow::Value::ValueType t) const |
| 2534 | { |
no test coverage detected