diff options
author | David Storch <david.storch@10gen.com> | 2015-04-14 14:53:19 -0400 |
---|---|---|
committer | David Storch <david.storch@10gen.com> | 2015-04-17 17:23:03 +1000 |
commit | d03a9b6cbc6f5554738f4dd291809b73e3bb4c8a (patch) | |
tree | 2690d9df98f7ec3af073387468c5001c55cf2b76 /src/mongo/db/exec/fetch.h | |
parent | 7745af75e699fa94051000b801769e1a6310e898 (diff) | |
download | mongo-d03a9b6cbc6f5554738f4dd291809b73e3bb4c8a.tar.gz |
SERVER-17633 add const qualifiers to PlanStage and Explain interfaces
Diffstat (limited to 'src/mongo/db/exec/fetch.h')
-rw-r--r-- | src/mongo/db/exec/fetch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/fetch.h b/src/mongo/db/exec/fetch.h index 05af024ef90..18fbeedb3db 100644 --- a/src/mongo/db/exec/fetch.h +++ b/src/mongo/db/exec/fetch.h @@ -68,9 +68,9 @@ namespace mongo { PlanStageStats* getStats(); - virtual const CommonStats* getCommonStats(); + virtual const CommonStats* getCommonStats() const; - virtual const SpecificStats* getSpecificStats(); + virtual const SpecificStats* getSpecificStats() const; static const char* kStageType; |