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_pull_all.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mongo/db/ops/modifier_pull_all.h') diff --git a/src/mongo/db/ops/modifier_pull_all.h b/src/mongo/db/ops/modifier_pull_all.h index bdc96b18b74..fef6c7b03f3 100644 --- a/src/mongo/db/ops/modifier_pull_all.h +++ b/src/mongo/db/ops/modifier_pull_all.h @@ -28,7 +28,6 @@ #pragma once -#include #include #include "mongo/base/disallow_copying.h" @@ -78,7 +77,7 @@ namespace mongo { // The instance of the field in the provided doc. // This data is valid after prepare, for use by log and apply struct PreparedState; - boost::scoped_ptr _preparedState; + std::unique_ptr _preparedState; // User specified elements to remove std::vector _elementsToFind; -- cgit v1.2.1