From 4035cab6b974613af9eb06ac1a92cc39d6ba8e06 Mon Sep 17 00:00:00 2001 From: Andrew Morrow Date: Wed, 10 Jun 2015 19:01:38 -0400 Subject: SERVER-17307 Replace boost::shared_ptr and friends with std::shared_ptr --- src/mongo/s/grid.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mongo/s/grid.h') diff --git a/src/mongo/s/grid.h b/src/mongo/s/grid.h index e8dc9c2e7c3..d15768ae21e 100644 --- a/src/mongo/s/grid.h +++ b/src/mongo/s/grid.h @@ -28,7 +28,6 @@ #pragma once -#include #include #include @@ -67,7 +66,7 @@ namespace mongo { /** * Implicitly creates the specified database as non-sharded. */ - StatusWith> implicitCreateDb(const std::string& dbName); + StatusWith> implicitCreateDb(const std::string& dbName); /** * @return true if shards and config servers are allowed to use 'localhost' in address -- cgit v1.2.1