diff options
Diffstat (limited to 'src/mongo/db/exec/add_fields_projection_executor.cpp')
| -rw-r--r-- | src/mongo/db/exec/add_fields_projection_executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/add_fields_projection_executor.cpp b/src/mongo/db/exec/add_fields_projection_executor.cpp index 067059167f5..a0fd7f08580 100644 --- a/src/mongo/db/exec/add_fields_projection_executor.cpp +++ b/src/mongo/db/exec/add_fields_projection_executor.cpp @@ -93,7 +93,7 @@ private: const BSONObj& _rawObj; // Tracks which paths we've seen to ensure no two paths conflict with each other. - OrderedPathSet _seenPaths; + std::set<std::string, PathPrefixComparator> _seenPaths; }; void ProjectionSpecValidator::uassertValid(const BSONObj& spec) { |
