summaryrefslogtreecommitdiff
path: root/src/mongo/rpc/reply_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/rpc/reply_interface.h')
-rw-r--r--src/mongo/rpc/reply_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/rpc/reply_interface.h b/src/mongo/rpc/reply_interface.h
index d4d7c650756..13380051d9b 100644
--- a/src/mongo/rpc/reply_interface.h
+++ b/src/mongo/rpc/reply_interface.h
@@ -29,7 +29,6 @@
#pragma once
-#include "mongo/base/disallow_copying.h"
#include "mongo/rpc/protocol.h"
namespace mongo {
@@ -42,7 +41,8 @@ namespace rpc {
* An immutable view of an RPC Reply.
*/
class ReplyInterface {
- MONGO_DISALLOW_COPYING(ReplyInterface);
+ ReplyInterface(const ReplyInterface&) = delete;
+ ReplyInterface& operator=(const ReplyInterface&) = delete;
public:
virtual ~ReplyInterface() = default;