diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-02-21 20:46:48 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-02-21 20:46:48 +0000 |
commit | 40066cce0000efafd95c49f5032a4a703d80d57a (patch) | |
tree | 7ae5247997076d211e239ad06f7df8a465a10add /llvm/lib/Object/ObjectFile.cpp | |
parent | b1f8a5a5034d106d8ab542579d5f8b8cc7e70241 (diff) | |
download | llvm-40066cce0000efafd95c49f5032a4a703d80d57a.zip llvm-40066cce0000efafd95c49f5032a4a703d80d57a.tar.gz llvm-40066cce0000efafd95c49f5032a4a703d80d57a.tar.bz2 |
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
Diffstat (limited to 'llvm/lib/Object/ObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/ObjectFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/ObjectFile.cpp b/llvm/lib/Object/ObjectFile.cpp index 8034371..69f47a7 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; |