summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/projection.cpp
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2015-04-14 14:53:19 -0400
committerDavid Storch <david.storch@10gen.com>2015-04-17 17:23:03 +1000
commitd03a9b6cbc6f5554738f4dd291809b73e3bb4c8a (patch)
tree2690d9df98f7ec3af073387468c5001c55cf2b76 /src/mongo/db/exec/projection.cpp
parent7745af75e699fa94051000b801769e1a6310e898 (diff)
downloadmongo-d03a9b6cbc6f5554738f4dd291809b73e3bb4c8a.tar.gz
SERVER-17633 add const qualifiers to PlanStage and Explain interfaces
Diffstat (limited to 'src/mongo/db/exec/projection.cpp')
-rw-r--r--src/mongo/db/exec/projection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/projection.cpp b/src/mongo/db/exec/projection.cpp
index e907a5eca7a..25616bfb197 100644
--- a/src/mongo/db/exec/projection.cpp
+++ b/src/mongo/db/exec/projection.cpp
@@ -285,11 +285,11 @@ namespace mongo {
return ret.release();
}
- const CommonStats* ProjectionStage::getCommonStats() {
+ const CommonStats* ProjectionStage::getCommonStats() const {
return &_commonStats;
}
- const SpecificStats* ProjectionStage::getSpecificStats() {
+ const SpecificStats* ProjectionStage::getSpecificStats() const {
return &_specificStats;
}