summaryrefslogtreecommitdiff
path: root/src/mongo/transport/session.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/transport/session.h')
-rw-r--r--src/mongo/transport/session.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/transport/session.h b/src/mongo/transport/session.h
index 58bb90bf18c..b2a9b2ba1a6 100644
--- a/src/mongo/transport/session.h
+++ b/src/mongo/transport/session.h
@@ -31,7 +31,6 @@
#include <memory>
-#include "mongo/base/disallow_copying.h"
#include "mongo/db/baton.h"
#include "mongo/platform/atomic_word.h"
#include "mongo/rpc/message.h"
@@ -55,7 +54,8 @@ using ConstSessionHandle = std::shared_ptr<const Session>;
* (on the transport side) and Messages with Client objects (on the database side).
*/
class Session : public std::enable_shared_from_this<Session>, public Decorable<Session> {
- MONGO_DISALLOW_COPYING(Session);
+ Session(const Session&) = delete;
+ Session& operator=(const Session&) = delete;
public:
/**