| 100 | } |
| 101 | |
| 102 | void FFTBinaryLookup::CacheEntry::close() |
| 103 | { |
| 104 | #ifdef _WIN32 |
| 105 | CloseHandle(this->m_handle); |
| 106 | #else |
| 107 | ::close(*(int*)this->m_handle); |
| 108 | //delete (int*)this->m_handle; |
| 109 | #endif |
| 110 | } |
| 111 | |
| 112 | bool FFTBinaryLookup::CacheEntry::successful_creation() |
| 113 | { |
no outgoing calls
no test coverage detected