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 /include/clang/Basic/SourceManager.h | |
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 'include/clang/Basic/SourceManager.h')
-rw-r--r-- | include/clang/Basic/SourceManager.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h index 96acffc981..6e035fcb80 100644 --- a/include/clang/Basic/SourceManager.h +++ b/include/clang/Basic/SourceManager.h @@ -14,6 +14,7 @@ #ifndef LLVM_CLANG_SOURCEMANAGER_H #define LLVM_CLANG_SOURCEMANAGER_H +#include "clang/Basic/LLVM.h" #include "clang/Basic/SourceLocation.h" #include "llvm/Support/Allocator.h" #include "llvm/Support/DataTypes.h" @@ -25,10 +26,6 @@ #include <vector> #include <cassert> -namespace llvm { -class StringRef; -} - namespace clang { class Diagnostic; |