From d7d1fdb75966c684e9a42150e6e9b69c4a10ee08 Mon Sep 17 00:00:00 2001 From: Andrew Morrow Date: Wed, 10 Jun 2015 18:08:48 -0400 Subject: SERVER-17308 Replace boost::scoped_ptr with std::unique_ptr --- src/mongo/db/ops/modifier_bit.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mongo/db/ops/modifier_bit.h') diff --git a/src/mongo/db/ops/modifier_bit.h b/src/mongo/db/ops/modifier_bit.h index 1f5a9437f1e..812ac8f41e1 100644 --- a/src/mongo/db/ops/modifier_bit.h +++ b/src/mongo/db/ops/modifier_bit.h @@ -28,7 +28,6 @@ #pragma once -#include #include #include @@ -94,7 +93,7 @@ namespace mongo { OpEntries _ops; struct PreparedState; - boost::scoped_ptr _preparedState; + std::unique_ptr _preparedState; }; } // namespace mongo -- cgit v1.2.1