| 24 | { |
| 25 | public: |
| 26 | Node(const T& item) : m_item{ item } {} // Create a node from an object |
| 27 | |
| 28 | T m_item; // The object stored in this node |
| 29 | Node* m_next{}; // Pointer to next node |
nothing calls this directly
no outgoing calls
no test coverage detected