diff options
author | Will Wilson <will@indefiant.com> | 2013-12-27 20:02:27 +0000 |
---|---|---|
committer | Will Wilson <will@indefiant.com> | 2013-12-27 20:02:27 +0000 |
commit | ba2f146c87414a3acd10767f43f7e150fab37c10 (patch) | |
tree | e5bc5681611f5d2e80036a07f7f1ca042a887be5 /clang/lib/Lex/HeaderSearch.cpp | |
parent | 0fafd34a6e7a49adeabf463f45b47c11db965ee9 (diff) | |
download | bcm5719-llvm-ba2f146c87414a3acd10767f43f7e150fab37c10.tar.gz bcm5719-llvm-ba2f146c87414a3acd10767f43f7e150fab37c10.zip |
Silence compile warning by removing unused SourceMgr member
llvm-svn: 198083
Diffstat (limited to 'clang/lib/Lex/HeaderSearch.cpp')
-rw-r--r-- | clang/lib/Lex/HeaderSearch.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/Lex/HeaderSearch.cpp b/clang/lib/Lex/HeaderSearch.cpp index 4b447ba0003..875342d674d 100644 --- a/clang/lib/Lex/HeaderSearch.cpp +++ b/clang/lib/Lex/HeaderSearch.cpp @@ -47,9 +47,8 @@ HeaderSearch::HeaderSearch(IntrusiveRefCntPtr<HeaderSearchOptions> HSOpts, SourceManager &SourceMgr, DiagnosticsEngine &Diags, const LangOptions &LangOpts, const TargetInfo *Target) - : HSOpts(HSOpts), Diags(Diags), SourceMgr(SourceMgr), - FileMgr(SourceMgr.getFileManager()), FrameworkMap(64), - ModMap(SourceMgr, Diags, LangOpts, Target, *this) { + : HSOpts(HSOpts), Diags(Diags), FileMgr(SourceMgr.getFileManager()), + FrameworkMap(64), ModMap(SourceMgr, Diags, LangOpts, Target, *this) { AngledDirIdx = 0; SystemDirIdx = 0; NoCurDirSearch = false; |