| 5591 | iterator end() { return iterator(&m_RawList, VMA_NULL); } |
| 5592 | |
| 5593 | const_iterator cbegin() const { return const_iterator(&m_RawList, m_RawList.Front()); } |
| 5594 | const_iterator cend() const { return const_iterator(&m_RawList, VMA_NULL); } |
| 5595 | |
| 5596 | const_iterator begin() const { return cbegin(); } |
nothing calls this directly
no test coverage detected