diff options
author | Benety Goh <benety@mongodb.com> | 2013-09-18 16:46:45 -0400 |
---|---|---|
committer | Benety Goh <benety@mongodb.com> | 2013-09-19 12:06:59 -0400 |
commit | ebbe4cc7490836c7d59c2bcbfc4927afea561102 (patch) | |
tree | 3475b304d54c9472b46083eed5a887a611e4ae85 /src/mongo/db/exec | |
parent | 931efa060edf81dccd99bbe704818c9a512b49fa (diff) | |
download | mongo-ebbe4cc7490836c7d59c2bcbfc4927afea561102.tar.gz |
SERVER-10565 fixed pointer style
Diffstat (limited to 'src/mongo/db/exec')
-rw-r--r-- | src/mongo/db/exec/plan_stats.cpp | 4 | ||||
-rw-r--r-- | src/mongo/db/exec/plan_stats.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/exec/plan_stats.cpp b/src/mongo/db/exec/plan_stats.cpp index 0488320b499..bf079a7113a 100644 --- a/src/mongo/db/exec/plan_stats.cpp +++ b/src/mongo/db/exec/plan_stats.cpp @@ -31,7 +31,7 @@ namespace mongo { - void CommonStats::writeExplainTo(BSONObjBuilder * bob) const { + void CommonStats::writeExplainTo(BSONObjBuilder* bob) const { if (NULL == bob) { return; } @@ -42,7 +42,7 @@ namespace mongo { // forward to CommonStats for now // TODO: fill in specific stats - void PlanStageStats::writeExplainTo(BSONObjBuilder * bob) const { + void PlanStageStats::writeExplainTo(BSONObjBuilder* bob) const { common.writeExplainTo(bob); } diff --git a/src/mongo/db/exec/plan_stats.h b/src/mongo/db/exec/plan_stats.h index 0bc99a143fe..8c4fd22a0a7 100644 --- a/src/mongo/db/exec/plan_stats.h +++ b/src/mongo/db/exec/plan_stats.h @@ -62,7 +62,7 @@ namespace mongo { * NOTE: Debatable if this level of detail is desired. CommonStats info may be too * low-level for end users */ - void writeExplainTo(BSONObjBuilder * bob) const; + void writeExplainTo(BSONObjBuilder* bob) const; // Count calls into the stage. uint64_t works; @@ -111,7 +111,7 @@ namespace mongo { } // Fill in explain info using common and specific stats data - void writeExplainTo(BSONObjBuilder * bob) const; + void writeExplainTo(BSONObjBuilder* bob) const; // The stats of the node's children. vector<PlanStageStats*> children; |