From 9bb8d65d8d6c58fa325e81ad8f0d7d067a66f413 Mon Sep 17 00:00:00 2001 From: Adam Midvidy Date: Thu, 18 Jun 2015 11:18:11 -0400 Subject: SERVER-18723 boost -> stdx for condition_variable --- src/mongo/db/background.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mongo/db/background.cpp') diff --git a/src/mongo/db/background.cpp b/src/mongo/db/background.cpp index 2d492a103b4..fbf46736f98 100644 --- a/src/mongo/db/background.cpp +++ b/src/mongo/db/background.cpp @@ -36,6 +36,7 @@ #include #include "mongo/base/disallow_copying.h" +#include "mongo/stdx/condition_variable.h" #include "mongo/stdx/thread.h" #include "mongo/util/assert_util.h" #include "mongo/util/map_util.h" @@ -61,7 +62,7 @@ namespace { private: int _opsInProgCount; - boost::condition_variable _noOpsInProg; + stdx::condition_variable _noOpsInProg; }; typedef StringMap > BgInfoMap; -- cgit v1.2.1