| 59 | } |
| 60 | |
| 61 | std::size_t ExprIdToken::Hash::operator()(ExprIdToken etok) const |
| 62 | { |
| 63 | return std::hash<nonneg int>()(etok.getExpressionId()); |
| 64 | } |
| 65 | |
| 66 | void ProgramMemory::setValue(const Token* expr, const ValueFlow::Value& value) { |
| 67 | if (!expr) |
nothing calls this directly
no test coverage detected