diff options
Diffstat (limited to 'cc/completion_event.h')
-rw-r--r-- | cc/completion_event.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/completion_event.h b/cc/completion_event.h index 6632ab1..fb7f429 100644 --- a/cc/completion_event.h +++ b/cc/completion_event.h @@ -15,9 +15,9 @@ namespace cc { // absolutely certain that doing-so will not lead to a deadlock. // // It is safe to destroy this object as soon as wait() returns. -class CCCompletionEvent { +class CompletionEvent { public: - CCCompletionEvent() + CompletionEvent() : m_event(false /* manual_reset */, false /* initially_signaled */) { #ifndef NDEBUG @@ -26,7 +26,7 @@ public: #endif } - ~CCCompletionEvent() + ~CompletionEvent() { #ifndef NDEBUG DCHECK(m_waited); |