disallow copying
| 39 | HANDLE hThread; |
| 40 | // disallow copying |
| 41 | CryptThreadData(CryptThreadData const&) = delete; |
| 42 | void operator=(CryptThreadData const&) = delete; |
| 43 | CryptThreadData() { |
| 44 | memset(&operations, 0, sizeof(operations)); |
nothing calls this directly
no outgoing calls
no test coverage detected