diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-23 10:35:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-23 10:35:09 +0000 |
commit | d47d3b0cfeb7e8564ff77f48130fe63282b6d127 (patch) | |
tree | 27591948c423721f7e0526ff55233e9b7bdfef34 /lib | |
parent | 52a75bab9da635b52c778c0ec178f51b9303ebbe (diff) |
clean up forward declarations of raw_ostream to use the new LLVM.h
patch by Jon Mulder!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135851 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/CGCXXABI.h | 4 | ||||
-rw-r--r-- | lib/CodeGen/CGRecordLayout.h | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/lib/CodeGen/CGCXXABI.h b/lib/CodeGen/CGCXXABI.h index 8c0df38ff1..c2abf35832 100644 --- a/lib/CodeGen/CGCXXABI.h +++ b/lib/CodeGen/CGCXXABI.h @@ -15,14 +15,14 @@ #ifndef CLANG_CODEGEN_CXXABI_H #define CLANG_CODEGEN_CXXABI_H +#include "clang/Basic/LLVM.h" + #include "CodeGenFunction.h" namespace llvm { class Constant; class Type; class Value; - - template <class T> class SmallVectorImpl; } namespace clang { diff --git a/lib/CodeGen/CGRecordLayout.h b/lib/CodeGen/CGRecordLayout.h index e2fd45dc86..25a0a508f1 100644 --- a/lib/CodeGen/CGRecordLayout.h +++ b/lib/CodeGen/CGRecordLayout.h @@ -10,12 +10,13 @@ #ifndef CLANG_CODEGEN_CGRECORDLAYOUT_H #define CLANG_CODEGEN_CGRECORDLAYOUT_H -#include "llvm/ADT/DenseMap.h" -#include "llvm/DerivedTypes.h" #include "clang/AST/CharUnits.h" #include "clang/AST/Decl.h" +#include "clang/Basic/LLVM.h" +#include "llvm/ADT/DenseMap.h" +#include "llvm/DerivedTypes.h" + namespace llvm { - class raw_ostream; class StructType; } |