forked from OSchip/llvm-project
Remove an unused private field exposed by the recent LLVM_DELETED_FUNCTION changes.
llvm-svn: 164103
This commit is contained in:
parent
43201a8261
commit
462a36d229
|
@ -132,7 +132,6 @@ class HeaderSearch {
|
|||
};
|
||||
|
||||
FileManager &FileMgr;
|
||||
DiagnosticsEngine &Diags;
|
||||
/// \#include search path information. Requests for \#include "x" search the
|
||||
/// directory of the \#including file first, then each directory in SearchDirs
|
||||
/// consecutively. Requests for <x> search the current dir first, then each
|
||||
|
|
|
@ -41,7 +41,7 @@ ExternalHeaderFileInfoSource::~ExternalHeaderFileInfoSource() {}
|
|||
HeaderSearch::HeaderSearch(FileManager &FM, DiagnosticsEngine &Diags,
|
||||
const LangOptions &LangOpts,
|
||||
const TargetInfo *Target)
|
||||
: FileMgr(FM), Diags(Diags), FrameworkMap(64),
|
||||
: FileMgr(FM), FrameworkMap(64),
|
||||
ModMap(FileMgr, *Diags.getClient(), LangOpts, Target)
|
||||
{
|
||||
AngledDirIdx = 0;
|
||||
|
|
Loading…
Reference in New Issue