| 17 | template <typename T> |
| 18 | struct tree { |
| 19 | tree(const T& value, const std::vector<tree<T>>& children) |
| 20 | : value_(value) |
| 21 | , children_(children) |
| 22 | { |
| 23 | } |
| 24 | T value_; |
| 25 | std::vector<tree<T>> children_; |
| 26 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected