summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/group.h
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2015-07-16 15:21:19 -0400
committerMathias Stearn <mathias@10gen.com>2015-07-23 12:26:07 -0400
commit2fcf4314964f566efa546d6ec9c53bfaf78c2972 (patch)
tree9cb19f8cfebaef12373953eb85b0a4fd3bc7ccd0 /src/mongo/db/exec/group.h
parentd065c380ffc76fef63cf2fe7bacc439134ab39eb (diff)
downloadmongo-2fcf4314964f566efa546d6ec9c53bfaf78c2972.tar.gz
SERVER-19456 Use final designators where appropriate in PlanStages
Diffstat (limited to 'src/mongo/db/exec/group.h')
-rw-r--r--src/mongo/db/exec/group.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/mongo/db/exec/group.h b/src/mongo/db/exec/group.h
index 97fb39d27e7..ce969c9335f 100644
--- a/src/mongo/db/exec/group.h
+++ b/src/mongo/db/exec/group.h
@@ -78,7 +78,7 @@ struct GroupRequest {
*
* Only created through the getExecutorGroup path.
*/
-class GroupStage : public PlanStage {
+class GroupStage final : public PlanStage {
MONGO_DISALLOW_COPYING(GroupStage);
public:
@@ -86,19 +86,18 @@ public:
const GroupRequest& request,
WorkingSet* workingSet,
PlanStage* child);
- virtual ~GroupStage() {}
- virtual StageState work(WorkingSetID* out);
- virtual bool isEOF();
- virtual void doReattachToOperationContext(OperationContext* opCtx);
+ StageState work(WorkingSetID* out) final;
+ bool isEOF() final;
+ void doReattachToOperationContext(OperationContext* opCtx) final;
- virtual StageType stageType() const {
+ StageType stageType() const final {
return STAGE_GROUP;
}
- virtual std::unique_ptr<PlanStageStats> getStats();
+ std::unique_ptr<PlanStageStats> getStats() final;
- virtual const SpecificStats* getSpecificStats() const;
+ const SpecificStats* getSpecificStats() const final;
static const char* kStageType;