summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_entry_point_mongod.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/service_entry_point_mongod.h')
-rw-r--r--src/mongo/db/service_entry_point_mongod.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/service_entry_point_mongod.h b/src/mongo/db/service_entry_point_mongod.h
index 9845e7ffdb3..57946da4d0e 100644
--- a/src/mongo/db/service_entry_point_mongod.h
+++ b/src/mongo/db/service_entry_point_mongod.h
@@ -29,7 +29,6 @@
#pragma once
-#include "mongo/base/disallow_copying.h"
#include "mongo/transport/service_entry_point_impl.h"
namespace mongo {
@@ -38,7 +37,8 @@ namespace mongo {
* The entry point into mongod. Just a wrapper around assembleResponse.
*/
class ServiceEntryPointMongod final : public ServiceEntryPointImpl {
- MONGO_DISALLOW_COPYING(ServiceEntryPointMongod);
+ ServiceEntryPointMongod(const ServiceEntryPointMongod&) = delete;
+ ServiceEntryPointMongod& operator=(const ServiceEntryPointMongod&) = delete;
public:
using ServiceEntryPointImpl::ServiceEntryPointImpl;