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