summaryrefslogtreecommitdiff
path: root/src/mongo/client/remote_command_targeter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/remote_command_targeter.h')
-rw-r--r--src/mongo/client/remote_command_targeter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/client/remote_command_targeter.h b/src/mongo/client/remote_command_targeter.h
index 346003e5ae2..df4caa2c4d3 100644
--- a/src/mongo/client/remote_command_targeter.h
+++ b/src/mongo/client/remote_command_targeter.h
@@ -29,7 +29,6 @@
#pragma once
-#include "mongo/base/disallow_copying.h"
#include "mongo/util/future.h"
#include "mongo/util/net/hostandport.h"
#include "mongo/util/time_support.h"
@@ -47,7 +46,8 @@ class StatusWith;
* Interface encapsulating the targeting logic for a given replica set or a standalone host.
*/
class RemoteCommandTargeter {
- MONGO_DISALLOW_COPYING(RemoteCommandTargeter);
+ RemoteCommandTargeter(const RemoteCommandTargeter&) = delete;
+ RemoteCommandTargeter& operator=(const RemoteCommandTargeter&) = delete;
public:
virtual ~RemoteCommandTargeter() = default;