| 3 | |
| 4 | template <typename T> |
| 5 | XLockFreeStack<T>::XLockFreeStack() { |
| 6 | this->m_vector = new std::vector<T>(); |
| 7 | InitializeCriticalSectionAndSpinCount(&m_mutex, 0x1400); |
| 8 | } |
| 9 | |
| 10 | template <typename T> |
| 11 | T* XLockFreeStack<T>::Pop() { |
nothing calls this directly
no test coverage detected