summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/multiapplier_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/multiapplier_test.cpp')
-rw-r--r--src/mongo/db/repl/multiapplier_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/repl/multiapplier_test.cpp b/src/mongo/db/repl/multiapplier_test.cpp
index 1130fb67f5c..bafa8eef774 100644
--- a/src/mongo/db/repl/multiapplier_test.cpp
+++ b/src/mongo/db/repl/multiapplier_test.cpp
@@ -265,7 +265,8 @@ TEST_F(
}
class SharedCallbackState {
- MONGO_DISALLOW_COPYING(SharedCallbackState);
+ SharedCallbackState(const SharedCallbackState&) = delete;
+ SharedCallbackState& operator=(const SharedCallbackState&) = delete;
public:
explicit SharedCallbackState(bool* sharedCallbackStateDestroyed)