summaryrefslogtreecommitdiff
path: root/src/mongo/base/error_codes.tpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/base/error_codes.tpl.cpp')
-rw-r--r--src/mongo/base/error_codes.tpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/base/error_codes.tpl.cpp b/src/mongo/base/error_codes.tpl.cpp
index d4eaffce1c9..9242c885629 100644
--- a/src/mongo/base/error_codes.tpl.cpp
+++ b/src/mongo/base/error_codes.tpl.cpp
@@ -33,7 +33,7 @@
#include "mongo/base/static_assert.h"
#include "mongo/util/assert_util.h"
-#include "mongo/util/mongoutils/str.h"
+#include "mongo/util/str.h"
//#set $codes_with_extra = [ec for ec in $codes if ec.extra]
@@ -58,7 +58,7 @@ std::string ErrorCodes::errorString(Error err) {
return "$ec.name";
//#end for
default:
- return mongoutils::str::stream() << "Location" << int(err);
+ return str::stream() << "Location" << int(err);
}
}