summaryrefslogtreecommitdiff
path: root/src/mongo/util/processinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/processinfo.cpp')
-rw-r--r--src/mongo/util/processinfo.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mongo/util/processinfo.cpp b/src/mongo/util/processinfo.cpp
index baaa874eaff..434b2e766cb 100644
--- a/src/mongo/util/processinfo.cpp
+++ b/src/mongo/util/processinfo.cpp
@@ -34,8 +34,8 @@
#include "mongo/base/init.h"
#include "mongo/util/processinfo.h"
-#include <iostream>
#include <fstream>
+#include <iostream>
#include "mongo/util/log.h"
@@ -89,9 +89,8 @@ void ProcessInfo::initializeSystemInfo() {
* We need this get the system page size for the secure allocator, which the enterprise modules need
* for storage for command line parameters.
*/
-MONGO_INITIALIZER_GENERAL(SystemInfo,
- MONGO_NO_PREREQUISITES,
- MONGO_NO_DEPENDENTS)(InitializerContext* context) {
+MONGO_INITIALIZER_GENERAL(SystemInfo, MONGO_NO_PREREQUISITES, MONGO_NO_DEPENDENTS)
+(InitializerContext* context) {
ProcessInfo::initializeSystemInfo();
return Status::OK();
}