| 52 | } |
| 53 | |
| 54 | void CompletionTreeNode::appendChildren( |
| 55 | const QList<QExplicitlySharedDataPointer<KDevelop::CompletionTreeElement>>& children) |
| 56 | { |
| 57 | for (const auto& child : children) { |
| 58 | appendChild(child); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | void CompletionTreeNode::appendChildren( |
| 63 | const QList<QExplicitlySharedDataPointer<KDevelop::CompletionTreeItem>>& children) |
no test coverage detected