| 37 | // unit for placing vtable. So node is made a fake template. |
| 38 | template <typename = void> struct node { |
| 39 | virtual ~node() = default; |
| 40 | std::unique_ptr<node<>> next; |
| 41 | }; |
| 42 |
nothing calls this directly
no outgoing calls
no test coverage detected