Fix erroneous break wi/h a continue.

This commit is contained in:
David Ungar
2017-12-13 13:17:22 -08:00
parent c0b0b5c5da
commit a13e11462a

View File

@@ -908,7 +908,7 @@ void ASTProducer::findSnapshotAndOpenFiles(
}
}
if (FoundSnapshot)
break;
continue;
auto Content = MgrImpl.getFileContent(File, IsPrimary, Error);
if (!Content.Buffer) {