summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/shutdown.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/shutdown.h')
-rw-r--r--src/mongo/db/commands/shutdown.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/commands/shutdown.h b/src/mongo/db/commands/shutdown.h
index 3fdf347a50a..b782f4c58f6 100644
--- a/src/mongo/db/commands/shutdown.h
+++ b/src/mongo/db/commands/shutdown.h
@@ -47,12 +47,12 @@ namespace mongo {
const BSONObj& cmdObj,
std::vector<Privilege>* out);
virtual bool isWriteCommandForConfigServer() const { return false; }
- virtual void help( stringstream& help ) const;
+ virtual void help( std::stringstream& help ) const;
CmdShutdown() : Command("shutdown") {}
- bool run(OperationContext* txn, const string& dbname,
+ bool run(OperationContext* txn, const std::string& dbname,
BSONObj& cmdObj,
int options,
- string& errmsg,
+ std::string& errmsg,
BSONObjBuilder& result,
bool fromRepl);
private: