| 91 | } |
| 92 | |
| 93 | void addProblem(const IProblem::Ptr &problem) override |
| 94 | { |
| 95 | auto *node = new ProblemNode(m_groupedRootNode.data(), problem); |
| 96 | addDiagnostics(node, problem->diagnostics()); |
| 97 | m_groupedRootNode->addChild(node); |
| 98 | |
| 99 | } |
| 100 | |
| 101 | }; |
| 102 |
nothing calls this directly
no test coverage detected