summaryrefslogtreecommitdiff
path: root/src/mongo/db/namespace_string.cpp
diff options
context:
space:
mode:
authorJason Carey <jcarey@argv.me>2016-05-10 14:17:00 -0400
committerJason Carey <jcarey@argv.me>2016-06-17 17:56:11 -0400
commit907182f4672ab2dcea1e16da5366518a4e44fa8d (patch)
treeb74d4d9f97a3797b409db0f428ac05462501fa73 /src/mongo/db/namespace_string.cpp
parent737d557b1729d8d6c2892832b75630f045787ec1 (diff)
downloadmongo-907182f4672ab2dcea1e16da5366518a4e44fa8d.tar.gz
SERVER-24651 Add and use string data literals
Replace StringData("foo", StringData::LiteralTag()) with "foo"_sd
Diffstat (limited to 'src/mongo/db/namespace_string.cpp')
-rw-r--r--src/mongo/db/namespace_string.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/namespace_string.cpp b/src/mongo/db/namespace_string.cpp
index 61297365246..db22280231b 100644
--- a/src/mongo/db/namespace_string.cpp
+++ b/src/mongo/db/namespace_string.cpp
@@ -70,7 +70,7 @@ const string escapeTable[256] = {
const char kConfigCollection[] = "admin.system.version";
-const StringData listIndexesCursorNSPrefix("$cmd.listIndexes.", StringData::LiteralTag());
+constexpr auto listIndexesCursorNSPrefix = "$cmd.listIndexes."_sd;
} // namespace
@@ -99,7 +99,7 @@ bool legalClientSystemNS(StringData ns, bool write) {
const NamespaceString NamespaceString::kConfigCollectionNamespace(kConfigCollection);
bool NamespaceString::isListCollectionsCursorNS() const {
- return coll() == StringData("$cmd.listCollections", StringData::LiteralTag());
+ return coll() == "$cmd.listCollections"_sd;
}
bool NamespaceString::isListIndexesCursorNS() const {