| 3826 | template<typename T, typename ChildNodeT> |
| 3827 | struct Node { |
| 3828 | explicit Node( T const& _value ) : value( _value ) {} |
| 3829 | virtual ~Node() {} |
| 3830 | |
| 3831 | using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>; |
nothing calls this directly
no outgoing calls
no test coverage detected