Only thing we changed was adding "Iterator::" to the member's qualification
| 62 | |
| 63 | // Only thing we changed was adding "Iterator::" to the member's qualification |
| 64 | SharedBox Truckload::Iterator::getFirstBox() |
| 65 | { |
| 66 | // Return m_head's box (or nullptr if the list is empty) |
| 67 | m_current = m_head; |
| 68 | return m_current? m_current->m_box : nullptr; |
| 69 | } |
| 70 | |
| 71 | // Only thing we changed was adding "Iterator::" to the member's qualification |
| 72 | SharedBox Truckload::Iterator::getNextBox() |
no outgoing calls
no test coverage detected