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/limit.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/limit.h')
-rw-r--r-- | src/mongo/db/exec/limit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/limit.h b/src/mongo/db/exec/limit.h index 489eea2e589..484df742439 100644 --- a/src/mongo/db/exec/limit.h +++ b/src/mongo/db/exec/limit.h @@ -61,9 +61,9 @@ namespace mongo { virtual PlanStageStats* getStats(); - virtual const CommonStats* getCommonStats(); + virtual const CommonStats* getCommonStats() const; - virtual const SpecificStats* getSpecificStats(); + virtual const SpecificStats* getSpecificStats() const; static const char* kStageType; |