| 44 | } |
| 45 | |
| 46 | CSLSRecycleArray::~CSLSRecycleArray() |
| 47 | { |
| 48 | CSLSLock lock(&m_rwclock, true); |
| 49 | if (m_arrayData != NULL) { |
| 50 | delete[] m_arrayData; |
| 51 | m_arrayData = NULL; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | int CSLSRecycleArray::count() |
| 56 | { |
nothing calls this directly
no outgoing calls
no test coverage detected