summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/impersonation_session.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/impersonation_session.h')
-rw-r--r--src/mongo/db/auth/impersonation_session.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/auth/impersonation_session.h b/src/mongo/db/auth/impersonation_session.h
index 603142f2cbf..bab75018f8b 100644
--- a/src/mongo/db/auth/impersonation_session.h
+++ b/src/mongo/db/auth/impersonation_session.h
@@ -27,7 +27,6 @@
* it in the license file.
*/
-#include "mongo/base/disallow_copying.h"
#include "mongo/rpc/metadata/impersonated_user_metadata.h"
namespace mongo {
@@ -38,7 +37,8 @@ class OperationContext;
* for the duration of the life of this object.
*/
class ImpersonationSessionGuard {
- MONGO_DISALLOW_COPYING(ImpersonationSessionGuard);
+ ImpersonationSessionGuard(const ImpersonationSessionGuard&) = delete;
+ ImpersonationSessionGuard& operator=(const ImpersonationSessionGuard&) = delete;
public:
ImpersonationSessionGuard(OperationContext* opCtx);