diff options
Diffstat (limited to 'src/mongo/db/pipeline/document_source_graph_lookup.h')
-rw-r--r-- | src/mongo/db/pipeline/document_source_graph_lookup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/document_source_graph_lookup.h b/src/mongo/db/pipeline/document_source_graph_lookup.h index 527c71a21c2..992fdd0805f 100644 --- a/src/mongo/db/pipeline/document_source_graph_lookup.h +++ b/src/mongo/db/pipeline/document_source_graph_lookup.h @@ -65,9 +65,9 @@ public: return constraints; } - GetDepsReturn getDependencies(DepsTracker* deps) const final { + DepsTracker::State getDependencies(DepsTracker* deps) const final { _startWith->addDependencies(deps); - return SEE_NEXT; + return DepsTracker::State::SEE_NEXT; }; void addInvolvedCollections(std::vector<NamespaceString>* collections) const final { |