зеркало из https://github.com/microsoft/clang.git
Use SourceManager::isFromMainFile()
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49685 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
3004be018c
Коммит
080c40b192
|
@ -670,7 +670,7 @@ void CheckerConsumer::VisitCFG(CFG& C, Decl& CD) {
|
|||
if (!Loc.isFileID())
|
||||
return;
|
||||
|
||||
if (!AnalyzeAll && Loc.getFileID() != Ctx->getSourceManager().getMainFileID())
|
||||
if (!AnalyzeAll && !Ctx->getSourceManager().isFromMainFile(Loc))
|
||||
return;
|
||||
|
||||
// Lazily create the diagnostic client.
|
||||
|
|
Загрузка…
Ссылка в новой задаче