diff options
Diffstat (limited to 'base/waitable_event.h')
-rw-r--r-- | base/waitable_event.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/waitable_event.h b/base/waitable_event.h index 84feedc..cff1e12 100644 --- a/base/waitable_event.h +++ b/base/waitable_event.h @@ -136,8 +136,8 @@ class WaitableEvent { // second element is the index of the WaitableEvent in the original, // unsorted, array. typedef std::pair<WaitableEvent*, size_t> WaiterAndIndex; - static unsigned EnqueueMany(WaiterAndIndex* waitables, - size_t count, Waiter* waiter); + static size_t EnqueueMany(WaiterAndIndex* waitables, + size_t count, Waiter* waiter); Lock lock_; bool signaled_; |