summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/explain_cmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/explain_cmd.h')
-rw-r--r--src/mongo/db/commands/explain_cmd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/commands/explain_cmd.h b/src/mongo/db/commands/explain_cmd.h
index bfb8dd5cf1a..5fab99fc8ff 100644
--- a/src/mongo/db/commands/explain_cmd.h
+++ b/src/mongo/db/commands/explain_cmd.h
@@ -65,7 +65,7 @@ namespace mongo {
virtual bool adminOnly() const { return false; }
- virtual void help( stringstream& help ) const {
+ virtual void help( std::stringstream& help ) const {
help << "explain database reads and writes";
}
@@ -79,9 +79,9 @@ namespace mongo {
const BSONObj& cmdObj);
virtual bool run(OperationContext* txn,
- const string& dbname,
+ const std::string& dbname,
BSONObj& cmdObj, int options,
- string& errmsg,
+ std::string& errmsg,
BSONObjBuilder& result,
bool fromRepl);