Remove unused IncrProcessing parameter from Preprocessor ctor

Preprocessor::enableIncrementalProcessing() provides a consistent interface to
enable the feature.

llvm-svn: 207824
This commit is contained in:
Alp Toker
2014-05-02 03:43:21 +00:00
parent 1c583cc668
commit 23aa353291
3 changed files with 2 additions and 5 deletions

View File

@@ -244,7 +244,6 @@ void CompilerInstance::createPreprocessor(TranslationUnitKind TUKind) {
getSourceManager(), *HeaderInfo, *this, PTHMgr,
/*OwnsHeaderSearch=*/true,
/*DelayInitialization=*/false,
/*IncrProcessing=*/false,
TUKind);
// Note that this is different then passing PTHMgr to Preprocessor's ctor.