зеркало из https://github.com/microsoft/clang.git
Use range-based for loops. NFC
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254133 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
31bddffcac
Коммит
5a36f5afc3
|
@ -278,8 +278,8 @@ bool DiagnosticsEngine::setDiagnosticGroupWarningAsError(StringRef Group,
|
|||
return true;
|
||||
|
||||
// Perform the mapping change.
|
||||
for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i) {
|
||||
DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
|
||||
for (diag::kind Diag : GroupDiags) {
|
||||
DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
|
||||
|
||||
if (Info.getSeverity() == diag::Severity::Error ||
|
||||
Info.getSeverity() == diag::Severity::Fatal)
|
||||
|
@ -309,8 +309,8 @@ bool DiagnosticsEngine::setDiagnosticGroupErrorAsFatal(StringRef Group,
|
|||
return true;
|
||||
|
||||
// Perform the mapping change.
|
||||
for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i) {
|
||||
DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
|
||||
for (diag::kind Diag : GroupDiags) {
|
||||
DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
|
||||
|
||||
if (Info.getSeverity() == diag::Severity::Fatal)
|
||||
Info.setSeverity(diag::Severity::Error);
|
||||
|
@ -329,9 +329,9 @@ void DiagnosticsEngine::setSeverityForAll(diag::Flavor Flavor,
|
|||
Diags->getAllDiagnostics(Flavor, AllDiags);
|
||||
|
||||
// Set the mapping.
|
||||
for (unsigned i = 0, e = AllDiags.size(); i != e; ++i)
|
||||
if (Diags->isBuiltinWarningOrExtension(AllDiags[i]))
|
||||
setSeverity(AllDiags[i], Map, Loc);
|
||||
for (diag::kind Diag : AllDiags)
|
||||
if (Diags->isBuiltinWarningOrExtension(Diag))
|
||||
setSeverity(Diag, Map, Loc);
|
||||
}
|
||||
|
||||
void DiagnosticsEngine::Report(const StoredDiagnostic &storedDiag) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче