summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops/modifier_set.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/ops/modifier_set.h')
-rw-r--r--src/mongo/db/ops/modifier_set.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/ops/modifier_set.h b/src/mongo/db/ops/modifier_set.h
index eeae479a162..cc961163234 100644
--- a/src/mongo/db/ops/modifier_set.h
+++ b/src/mongo/db/ops/modifier_set.h
@@ -28,7 +28,6 @@
#pragma once
-#include <boost/scoped_ptr.hpp>
#include <string>
#include "mongo/base/disallow_copying.h"
@@ -108,7 +107,7 @@ namespace mongo {
// prepare() was issued and until a log() is issued. The document this mod is
// being prepared against must be live throughout all the calls.
struct PreparedState;
- boost::scoped_ptr<PreparedState> _preparedState;
+ std::unique_ptr<PreparedState> _preparedState;
};