| 67 | } |
| 68 | |
| 69 | DirIvCache::~DirIvCache() |
| 70 | { |
| 71 | |
| 72 | for (auto it = m_lru_list.begin(); it != m_lru_list.end(); ++it) { |
| 73 | DirIvCacheNode *node = *it; |
| 74 | delete node; |
| 75 | } |
| 76 | |
| 77 | for (auto it = m_spare_node_list.begin(); it != m_spare_node_list.end(); ++it) { |
| 78 | DirIvCacheNode *node = *it; |
| 79 | delete node; |
| 80 | } |
| 81 | |
| 82 | DeleteCriticalSection(&m_crit); |
| 83 | } |
| 84 | |
| 85 | void DirIvCache::normalize_key(wstring& key) |
| 86 | { |
nothing calls this directly
no outgoing calls
no test coverage detected