diff options
Diffstat (limited to 'src/mongo/db/background.cpp')
-rw-r--r-- | src/mongo/db/background.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/background.cpp b/src/mongo/db/background.cpp index f499e8a1a2e..156955134ce 100644 --- a/src/mongo/db/background.cpp +++ b/src/mongo/db/background.cpp @@ -34,7 +34,6 @@ #include <iostream> #include <string> -#include "mongo/base/disallow_copying.h" #include "mongo/stdx/condition_variable.h" #include "mongo/stdx/mutex.h" #include "mongo/stdx/thread.h" @@ -50,7 +49,8 @@ using std::shared_ptr; namespace { class BgInfo { - MONGO_DISALLOW_COPYING(BgInfo); + BgInfo(const BgInfo&) = delete; + BgInfo& operator=(const BgInfo&) = delete; public: BgInfo() : _opsInProgCount(0) {} |