| 5742 | struct Node { |
| 5743 | explicit Node( T const& _value ) : value( _value ) {} |
| 5744 | virtual ~Node() {} |
| 5745 | |
| 5746 | using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>; |
| 5747 | T value; |
nothing calls this directly
no outgoing calls
no test coverage detected