diff options
Diffstat (limited to 'src/mongo/db/ops/modifier_rename.h')
-rw-r--r-- | src/mongo/db/ops/modifier_rename.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/ops/modifier_rename.h b/src/mongo/db/ops/modifier_rename.h index a0407ab9d31..a43523f5320 100644 --- a/src/mongo/db/ops/modifier_rename.h +++ b/src/mongo/db/ops/modifier_rename.h @@ -28,7 +28,6 @@ #pragma once -#include <boost/scoped_ptr.hpp> #include <string> #include "mongo/base/disallow_copying.h" @@ -93,7 +92,7 @@ namespace mongo { // The state carried over from prepare for apply/log struct PreparedState; - boost::scoped_ptr<PreparedState> _preparedState; + std::unique_ptr<PreparedState> _preparedState; }; } // namespace mongo |