From f922827d45ce752e148185dfa3a785f7c9cf29fd Mon Sep 17 00:00:00 2001 From: Billy Donahue Date: Wed, 27 Mar 2019 12:21:37 -0400 Subject: SERVER-40357 expand all calls to MONGO_DISALLOW_COPYING produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done --- src/mongo/db/curop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mongo/db/curop.cpp') diff --git a/src/mongo/db/curop.cpp b/src/mongo/db/curop.cpp index 5208639bc93..cb18faa1337 100644 --- a/src/mongo/db/curop.cpp +++ b/src/mongo/db/curop.cpp @@ -37,7 +37,6 @@ #include -#include "mongo/base/disallow_copying.h" #include "mongo/bson/mutable/document.h" #include "mongo/db/auth/authorization_session.h" #include "mongo/db/client.h" @@ -147,7 +146,8 @@ BSONObj upconvertGetMoreEntry(const NamespaceString& nss, CursorId cursorId, int * The stack itself is represented in the _parent pointers of the CurOp class. */ class CurOp::CurOpStack { - MONGO_DISALLOW_COPYING(CurOpStack); + CurOpStack(const CurOpStack&) = delete; + CurOpStack& operator=(const CurOpStack&) = delete; public: CurOpStack() : _base(nullptr, this) {} -- cgit v1.2.1