summaryrefslogtreecommitdiff
path: root/lib/Object
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-02-21 20:46:48 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-02-21 20:46:48 +0000
commit84ace05e8ce29d5831a0eb68b373ae1a1777c7cc (patch)
tree3d578c70058b89f3d28abe726851ced0e55ff0f6 /lib/Object
parent100aba293d09d7e355bd513bd318ef8626158083 (diff)
downloadllvm-84ace05e8ce29d5831a0eb68b373ae1a1777c7cc.tar.gz
llvm-84ace05e8ce29d5831a0eb68b373ae1a1777c7cc.tar.bz2
llvm-84ace05e8ce29d5831a0eb68b373ae1a1777c7cc.tar.xz
Shankar kindly pointed out that I wasn't following the coding convention properly, so moving raw_ostream.h above system_error.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201885 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Object')
-rw-r--r--lib/Object/ObjectFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Object/ObjectFile.cpp b/lib/Object/ObjectFile.cpp
index 80343714e4..69f47a77a4 100644
--- a/lib/Object/ObjectFile.cpp
+++ b/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;