| 60 | }; |
| 61 | |
| 62 | ErrorMessage::ErrorMessage() |
| 63 | : severity(Severity::none), cwe(0U), certainty(Certainty::normal) |
| 64 | {} |
| 65 | |
| 66 | // TODO: id and msg are swapped compared to other calls |
| 67 | ErrorMessage::ErrorMessage(std::list<FileLocation> callStack, std::string file1, Severity severity, const std::string &msg, std::string id, Certainty certainty) : |
nothing calls this directly
no test coverage detected