| 163 | } |
| 164 | |
| 165 | void KeyCache::Enable() |
| 166 | { |
| 167 | lock_guard<mutex> lock(m_mutex); |
| 168 | |
| 169 | #ifdef _DEBUG |
| 170 | string mes = "enabling key cache at " + get_local_time_string() + "\n"; |
| 171 | OutputDebugStringA(mes.c_str()); |
| 172 | #endif |
| 173 | |
| 174 | m_enabled = true; |
| 175 | } |
| 176 | |
| 177 | void KeyCache::ClearInternal(bool disable) |
| 178 | { |
no test coverage detected