Use the new script to sort the includes of every file under lib.
[oota-llvm.git] / lib / Support / DataStream.cpp
index 3a38e2a66b437df7379b1a19a058c1d3b7be4ad4..0a02281c2549db3482395fb0e25e7b4f1ca8ad7e 100644 (file)
 //===----------------------------------------------------------------------===//
 
 #define DEBUG_TYPE "Data-stream"
-#include "llvm/ADT/Statistic.h"
 #include "llvm/Support/DataStream.h"
+#include "llvm/ADT/Statistic.h"
 #include "llvm/Support/Program.h"
 #include "llvm/Support/system_error.h"
-#include <string>
 #include <cerrno>
 #include <cstdio>
+#include <string>
 #if !defined(_MSC_VER) && !defined(__MINGW32__)
 #include <unistd.h>
 #else