| 1606 | } |
| 1607 | |
| 1608 | void CheckUninitVarImpl::uninitStructMemberError(const Token *tok, const std::string &membername) |
| 1609 | { |
| 1610 | reportError(tok, |
| 1611 | Severity::error, |
| 1612 | "uninitStructMember", |
| 1613 | "$symbol:" + membername + "\nUninitialized struct member: $symbol", CWE_USE_OF_UNINITIALIZED_VARIABLE, Certainty::normal); |
| 1614 | } |
| 1615 | |
| 1616 | void CheckUninitVarImpl::valueFlowUninit() |
| 1617 | { |
no test coverage detected