| 35 | { |
| 36 | public: |
| 37 | Node(const T& item) : m_item{ item } {} // Create a node from an object |
| 38 | |
| 39 | T m_item; // The object stored in this node |
| 40 | std::unique_ptr<Node> m_next{}; // Pointer to next node |
nothing calls this directly
no outgoing calls
no test coverage detected