diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2016-05-28 17:55:10 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2016-05-28 17:55:10 -0400 |
commit | 8ff8b380201ff2866e81f74cf914227a9bd272fa (patch) | |
tree | aabe9ec55e5b769e66fe215d59357ddb2721e6ef /src/mongo/util/processinfo_osx.cpp | |
parent | 8d94f1c084b85c34b0c3c10cb8367491681b4a0e (diff) | |
download | mongo-8ff8b380201ff2866e81f74cf914227a9bd272fa.tar.gz |
SERVER-23971 Fixup headers to workaround clang-format 3.8 include sorting bug
Diffstat (limited to 'src/mongo/util/processinfo_osx.cpp')
-rw-r--r-- | src/mongo/util/processinfo_osx.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mongo/util/processinfo_osx.cpp b/src/mongo/util/processinfo_osx.cpp index c8e786bfac2..f15601c5390 100644 --- a/src/mongo/util/processinfo_osx.cpp +++ b/src/mongo/util/processinfo_osx.cpp @@ -30,9 +30,6 @@ #define MONGO_LOG_DEFAULT_COMPONENT ::mongo::logger::LogComponent::kControl #include "mongo/platform/basic.h" -#include "mongo/util/processinfo.h" -#include "mongo/util/log.h" -#include "mongo/db/jsobj.h" #include <boost/none.hpp> #include <boost/optional.hpp> @@ -51,6 +48,10 @@ #include <sys/mman.h> #include <sys/sysctl.h> +#include "mongo/db/jsobj.h" +#include "mongo/util/log.h" +#include "mongo/util/processinfo.h" + using namespace std; namespace mongo { |