| 354 | } |
| 355 | |
| 356 | static std::vector<RawNodeId> transform(const std::vector<NodeId>& input) { |
| 357 | std::vector<RawNodeId> output; |
| 358 | output.reserve(input.size()); |
| 359 | std::transform(input.begin(), input.end(), std::back_inserter(output), |
| 360 | [](NodeId id) { return (RawNodeId)id; }); |
| 361 | return output; |
| 362 | } |
| 363 | |
| 364 | std::vector<RawNodeId> SLgetAll(FileContent* fC, RawNodeId parent, |
| 365 | uint32_t type) { |
no outgoing calls