| 1735 | } |
| 1736 | |
| 1737 | void CheckUnusedVar::getErrorMessages(ErrorLogger& errorLogger, const Settings &settings) const |
| 1738 | { |
| 1739 | CheckUnusedVarImpl c(nullptr, settings, errorLogger); |
| 1740 | c.unusedVariableError(nullptr, "varname"); |
| 1741 | c.allocatedButUnusedVariableError(nullptr, "varname"); |
| 1742 | c.unreadVariableError(nullptr, "varname", false); |
| 1743 | c.unassignedVariableError(nullptr, "varname"); |
| 1744 | c.unusedStructMemberError(nullptr, "structname", "variable"); |
| 1745 | } |
| 1746 |
nothing calls this directly
no test coverage detected