summaryrefslogtreecommitdiff
path: root/src/mongo/base/status_with.h
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2019-04-08 16:27:50 -0400
committerBilly Donahue <billy.donahue@mongodb.com>2019-04-09 15:38:40 -0400
commit1041dd848e25e879260d1015d8da4f72ee7993fe (patch)
treef8ddb4ee7c841e4ef790ea7bd53e75c0a09c4cc2 /src/mongo/base/status_with.h
parent8cdc51e7810f7fd8898a4c60b935e389f04659ee (diff)
downloadmongo-1041dd848e25e879260d1015d8da4f72ee7993fe.tar.gz
SERVER-40476 remove mongoutils::str
Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
Diffstat (limited to 'src/mongo/base/status_with.h')
-rw-r--r--src/mongo/base/status_with.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/base/status_with.h b/src/mongo/base/status_with.h
index 4284a1ab530..453cfb08101 100644
--- a/src/mongo/base/status_with.h
+++ b/src/mongo/base/status_with.h
@@ -114,8 +114,7 @@ public:
: _status(code, std::move(reason)) {}
MONGO_COMPILER_COLD_FUNCTION StatusWith(ErrorCodes::Error code, const char* reason)
: _status(code, reason) {}
- MONGO_COMPILER_COLD_FUNCTION StatusWith(ErrorCodes::Error code,
- const mongoutils::str::stream& reason)
+ MONGO_COMPILER_COLD_FUNCTION StatusWith(ErrorCodes::Error code, const str::stream& reason)
: _status(code, reason) {}
/**