summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Hernandez <scotthernandez@gmail.com>2015-11-24 15:08:26 -0500
committerScott Hernandez <scotthernandez@gmail.com>2015-11-24 15:28:10 -0500
commit0377c359a6f105ecbec54a7723590235a4e86998 (patch)
tree3da10659ebbfca8cc2a4173f75c78ad83560c97a
parenta4424a79434ddddc77e34f3c99acd657e4375890 (diff)
downloadmongo-0377c359a6f105ecbec54a7723590235a4e86998.tar.gz
SERVER-21643: fix compile on osx
-rw-r--r--src/mongo/db/repl/replication_executor.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mongo/db/repl/replication_executor.h b/src/mongo/db/repl/replication_executor.h
index 5b130f87de4..24d3e67421e 100644
--- a/src/mongo/db/repl/replication_executor.h
+++ b/src/mongo/db/repl/replication_executor.h
@@ -313,13 +313,13 @@ private:
stdx::mutex _mutex;
stdx::mutex _terribleExLockSyncMutex;
stdx::condition_variable _noMoreWaitingThreads;
- WorkQueue _freeQueue{};
- WorkQueue _readyQueue{};
- WorkQueue _dbWorkInProgressQueue{};
- WorkQueue _exclusiveLockInProgressQueue{};
- WorkQueue _networkInProgressQueue{};
- WorkQueue _sleepersQueue{};
- EventList _unsignaledEvents{};
+ WorkQueue _freeQueue;
+ WorkQueue _readyQueue;
+ WorkQueue _dbWorkInProgressQueue;
+ WorkQueue _exclusiveLockInProgressQueue;
+ WorkQueue _networkInProgressQueue;
+ WorkQueue _sleepersQueue;
+ EventList _unsignaledEvents;
int64_t _totalEventWaiters = 0;
// Counters for metrics, for the whole life of this instance, protected by _mutex.