From 40066cce0000efafd95c49f5032a4a703d80d57a Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Fri, 21 Feb 2014 20:46:48 +0000 Subject: [PATCH] Shankar kindly pointed out that I wasn't following the coding convention properly, so moving raw_ostream.h above system_error.h. llvm-svn: 201885 --- llvm/lib/Object/ObjectFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Object/ObjectFile.cpp b/llvm/lib/Object/ObjectFile.cpp index 80343714e46b..69f47a77a421 100644 --- a/llvm/lib/Object/ObjectFile.cpp +++ b/llvm/lib/Object/ObjectFile.cpp @@ -16,8 +16,8 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/FileSystem.h" #include "llvm/Support/MemoryBuffer.h" -#include "llvm/Support/system_error.h" #include "llvm/Support/raw_ostream.h" +#include "llvm/Support/system_error.h" using namespace llvm; using namespace object;