Note: it is a callback function in parse.parse_impl
| 286 | |
| 287 | // Note: it is a callback function in parse.parse_impl |
| 288 | void copyToRoot(DNode<Allocator>& node) { |
| 289 | // copy to inherited DNode member |
| 290 | NodeType::operator=(std::move(node)); |
| 291 | } |
| 292 | |
| 293 | std::unique_ptr<Allocator> own_alloc_{nullptr}; |
| 294 | Allocator* alloc_{nullptr}; // maybe external allocator |
nothing calls this directly
no outgoing calls
no test coverage detected