| 199 | QList<StructTreeNode*> nodes; |
| 200 | |
| 201 | foreach (const QModelIndex& index, indexes) |
| 202 | { |
| 203 | StructTreeNode* node = static_cast<StructTreeNode*>(index.internalPointer()); |
| 204 | if (!nodes.contains(node)) |
| 205 | nodes << node; |
| 206 | } |
| 207 | StructTreeNode* leastDeepNode = getLeastDeepNodeFromList(nodes); |
| 208 | const qulonglong leastDeepPointer{Common::bit_cast<qulonglong, StructTreeNode*>(leastDeepNode)}; |
| 209 | stream << leastDeepPointer; |
nothing calls this directly
no outgoing calls
no test coverage detected