summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/eof.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/eof.h
parentd065c380ffc76fef63cf2fe7bacc439134ab39eb (diff)
downloadmongo-2fcf4314964f566efa546d6ec9c53bfaf78c2972.tar.gz
SERVER-19456 Use final designators where appropriate in PlanStages
Diffstat (limited to 'src/mongo/db/exec/eof.h')
-rw-r--r--src/mongo/db/exec/eof.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mongo/db/exec/eof.h b/src/mongo/db/exec/eof.h
index 30df7679ba1..33462ca3aa9 100644
--- a/src/mongo/db/exec/eof.h
+++ b/src/mongo/db/exec/eof.h
@@ -36,23 +36,23 @@ namespace mongo {
/**
* This stage just returns EOF immediately.
*/
-class EOFStage : public PlanStage {
+class EOFStage final : public PlanStage {
public:
EOFStage();
- virtual ~EOFStage();
+ ~EOFStage();
- virtual bool isEOF();
- virtual StageState work(WorkingSetID* out);
+ bool isEOF() final;
+ StageState work(WorkingSetID* out) final;
- virtual StageType stageType() const {
+ StageType stageType() const final {
return STAGE_EOF;
}
std::unique_ptr<PlanStageStats> getStats();
- virtual const SpecificStats* getSpecificStats() const;
+ const SpecificStats* getSpecificStats() const final;
static const char* kStageType;
};