| 216 | } |
| 217 | |
| 218 | static SuppressionList::ErrorMessage errorMessage(const std::string &errorId) { |
| 219 | SuppressionList::ErrorMessage ret; |
| 220 | ret.errorId = errorId; |
| 221 | ret.hash = 0; |
| 222 | ret.lineNumber = 0; |
| 223 | ret.certainty = Certainty::normal; |
| 224 | return ret; |
| 225 | } |
| 226 | |
| 227 | static SuppressionList::ErrorMessage errorMessage(const std::string &errorId, const std::string &file, int line) { |
| 228 | SuppressionList::ErrorMessage ret; |
nothing calls this directly
no test coverage detected