summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/plan_stage.h
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 12:46:52 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 14:43:05 -0400
commitf2bfd36a6f3eb7e7e2587268be3cc12636703d42 (patch)
tree6436772fbceb28f07bbfaee528d700159beb0cec /src/mongo/db/exec/plan_stage.h
parentc10e8282a7af38f8512e911a14889e14df8a2c6a (diff)
downloadmongo-f2bfd36a6f3eb7e7e2587268be3cc12636703d42.tar.gz
SERVER-13256: Remove pch - qualify std in headers
Diffstat (limited to 'src/mongo/db/exec/plan_stage.h')
-rw-r--r--src/mongo/db/exec/plan_stage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/plan_stage.h b/src/mongo/db/exec/plan_stage.h
index 304baf50bf5..b1f85499d2b 100644
--- a/src/mongo/db/exec/plan_stage.h
+++ b/src/mongo/db/exec/plan_stage.h
@@ -77,7 +77,7 @@ namespace mongo {
* case PlanStage::ADVANCED:
* // do something with result
* WorkingSetMember* member = workingSet.get(result);
- * cout << "Result: " << member->obj << endl;
+ * cout << "Result: " << member->obj << std::endl;
* break;
* case PlanStage::IS_EOF:
* // All done. Will fall out of while loop.
@@ -145,7 +145,7 @@ namespace mongo {
NEED_FETCH,
};
- static string stateStr(const StageState& state) {
+ static std::string stateStr(const StageState& state) {
if (ADVANCED == state) {
return "ADVANCED";
}