| 5809 | template<typename T, typename ChildNodeT> |
| 5810 | struct Node { |
| 5811 | explicit Node( T const& _value ) : value( _value ) {} |
| 5812 | virtual ~Node() {} |
| 5813 | |
| 5814 | using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>; |
nothing calls this directly
no outgoing calls
no test coverage detected