diff options
Diffstat (limited to 'src/mongo/db/exec/eof.cpp')
-rw-r--r-- | src/mongo/db/exec/eof.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/eof.cpp b/src/mongo/db/exec/eof.cpp index aebb31b0277..f5f127f016a 100644 --- a/src/mongo/db/exec/eof.cpp +++ b/src/mongo/db/exec/eof.cpp @@ -42,7 +42,7 @@ using stdx::make_unique; // static const char* EOFStage::kStageType = "EOF"; -EOFStage::EOFStage() : PlanStage(kStageType) {} +EOFStage::EOFStage(OperationContext* opCtx) : PlanStage(kStageType, opCtx) {} EOFStage::~EOFStage() {} |