| 1700 | } |
| 1701 | |
| 1702 | void CheckUnusedVarImpl::unusedStructMemberError(const Token* tok, const std::string& structname, const std::string& varname, const std::string& prefix) |
| 1703 | { |
| 1704 | reportError(tok, Severity::style, "unusedStructMember", "$symbol:" + structname + "::" + varname + '\n' + prefix + " member '$symbol' is never used.", CWE563, Certainty::normal); |
| 1705 | } |
| 1706 | |
| 1707 | bool CheckUnusedVarImpl::isEmptyType(const Type* type) |
| 1708 | { |
no test coverage detected