summaryrefslogtreecommitdiff
path: root/src/mongo/client/fetcher_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/fetcher_test.cpp')
-rw-r--r--src/mongo/client/fetcher_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/client/fetcher_test.cpp b/src/mongo/client/fetcher_test.cpp
index f92405fa791..0f7768d458f 100644
--- a/src/mongo/client/fetcher_test.cpp
+++ b/src/mongo/client/fetcher_test.cpp
@@ -1080,7 +1080,8 @@ TEST_F(FetcherTest, FetcherAppliesRetryPolicyToFirstCommandButNotToGetMoreReques
bool sharedCallbackStateDestroyed = false;
class SharedCallbackState {
- MONGO_DISALLOW_COPYING(SharedCallbackState);
+ SharedCallbackState(const SharedCallbackState&) = delete;
+ SharedCallbackState& operator=(const SharedCallbackState&) = delete;
public:
SharedCallbackState() {}