| 2136 | #ifndef _D3D12MA_LIST_CONST_ITERATOR_FUNCTIONS |
| 2137 | template<typename T> |
| 2138 | typename List<T>::iterator List<T>::const_iterator::dropConst() const |
| 2139 | { |
| 2140 | return iterator(const_cast<List<T>*>(m_pList), const_cast<Item*>(m_pItem)); |
| 2141 | } |
| 2142 | |
| 2143 | template<typename T> |
| 2144 | const T& List<T>::const_iterator::operator*() const |
no test coverage detected