summaryrefslogtreecommitdiff
path: root/src/mongo/bson/mutable/algorithm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/bson/mutable/algorithm.h')
-rw-r--r--src/mongo/bson/mutable/algorithm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/bson/mutable/algorithm.h b/src/mongo/bson/mutable/algorithm.h
index 53cedd6100c..f2d4ffd1de5 100644
--- a/src/mongo/bson/mutable/algorithm.h
+++ b/src/mongo/bson/mutable/algorithm.h
@@ -36,7 +36,7 @@
#include "mongo/base/string_data_comparator_interface.h"
#include "mongo/bson/mutable/const_element.h"
#include "mongo/bson/mutable/element.h"
-#include "mongo/util/mongoutils/str.h"
+#include "mongo/util/str.h"
namespace mongo {
namespace mutablebson {
@@ -290,7 +290,7 @@ std::string getFullName(ElementType element, char delim = '.') {
curr = curr.parent();
}
- mongoutils::str::stream name;
+ str::stream name;
bool first = true;
for (std::vector<StringData>::reverse_iterator it = names.rbegin(); it != names.rend(); ++it) {
if (!first)