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/s/catalog/dist_lock_catalog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mongo/s/catalog/dist_lock_catalog.h') diff --git a/src/mongo/s/catalog/dist_lock_catalog.h b/src/mongo/s/catalog/dist_lock_catalog.h index a3d596b26ac..7f774915b66 100644 --- a/src/mongo/s/catalog/dist_lock_catalog.h +++ b/src/mongo/s/catalog/dist_lock_catalog.h @@ -29,7 +29,6 @@ #pragma once -#include "mongo/base/disallow_copying.h" #include "mongo/base/string_data.h" #include "mongo/bson/oid.h" #include "mongo/db/write_concern_options.h" @@ -48,7 +47,8 @@ class StatusWith; * Interface for the distributed lock operations. */ class DistLockCatalog { - MONGO_DISALLOW_COPYING(DistLockCatalog); + DistLockCatalog(const DistLockCatalog&) = delete; + DistLockCatalog& operator=(const DistLockCatalog&) = delete; public: static const WriteConcernOptions kLocalWriteConcern; -- cgit v1.2.1