| 1805 | } |
| 1806 | |
| 1807 | void CheckUninitVar::getErrorMessages(ErrorLogger& errorLogger, const Settings& settings) const |
| 1808 | { |
| 1809 | CheckUninitVarImpl c(nullptr, settings, errorLogger); |
| 1810 | |
| 1811 | ValueFlow::Value v{}; |
| 1812 | |
| 1813 | c.uninitvarError(nullptr, v); // TODO: does not produce any output |
| 1814 | c.uninitdataError(nullptr, "varname"); |
| 1815 | c.uninitStructMemberError(nullptr, "a.b"); |
| 1816 | } |
nothing calls this directly
no test coverage detected