summaryrefslogtreecommitdiff
path: root/src/mongo/logger/log_component.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/logger/log_component.cpp')
-rw-r--r--src/mongo/logger/log_component.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/logger/log_component.cpp b/src/mongo/logger/log_component.cpp
index fc83d76aaf2..d64c4d8c66d 100644
--- a/src/mongo/logger/log_component.cpp
+++ b/src/mongo/logger/log_component.cpp
@@ -46,7 +46,7 @@ std::string _dottedNames[LogComponent::kNumLogComponents + 1];
* Returns StringData created from a string literal
*/
template <size_t N>
-StringData createStringData(const char(&val)[N]) {
+StringData createStringData(const char (&val)[N]) {
return StringData(val, StringData::LiteralTag());
}
@@ -54,8 +54,8 @@ StringData createStringData(const char(&val)[N]) {
// Fully initialize _dottedNames before we enter multithreaded execution.
//
-MONGO_INITIALIZER_WITH_PREREQUISITES(SetupDottedNames,
- MONGO_NO_PREREQUISITES)(InitializerContext* context) {
+MONGO_INITIALIZER_WITH_PREREQUISITES(SetupDottedNames, MONGO_NO_PREREQUISITES)
+(InitializerContext* context) {
for (int i = 0; i <= int(LogComponent::kNumLogComponents); ++i) {
logger::LogComponent component = static_cast<logger::LogComponent::Value>(i);
component.getDottedName();