summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/parsed_distinct.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/parsed_distinct.cpp')
-rw-r--r--src/mongo/db/query/parsed_distinct.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/query/parsed_distinct.cpp b/src/mongo/db/query/parsed_distinct.cpp
index b570b160a94..646fc2be778 100644
--- a/src/mongo/db/query/parsed_distinct.cpp
+++ b/src/mongo/db/query/parsed_distinct.cpp
@@ -57,7 +57,7 @@ namespace {
std::string getProjectedDottedField(const std::string& field, bool* isIDOut) {
// Check if field contains an array index.
std::vector<std::string> res;
- mongo::splitStringDelim(field, &res, '.');
+ str::splitStringDelim(field, &res, '.');
// Since we could exit early from the loop,
// we should check _id here and set '*isIDOut' accordingly.
@@ -78,7 +78,7 @@ std::string getProjectedDottedField(const std::string& field, bool* isIDOut) {
// string
// to the end of projectedField.
std::string projectedField;
- mongo::joinStringDelim(prefixStrings, &projectedField, '.');
+ str::joinStringDelim(prefixStrings, &projectedField, '.');
return projectedField;
}
}