Releases the semaphore (decrements the reference count).
| 421 | |
| 422 | // Releases the semaphore (decrements the reference count). |
| 423 | void release() |
| 424 | { |
| 425 | if (handle) |
| 426 | { |
| 427 | oidnReleaseSemaphore(handle); |
| 428 | handle = nullptr; |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | private: |
| 433 | OIDNSemaphore handle; |
nothing calls this directly
no test coverage detected