diff options
Diffstat (limited to 'contrib/llvm-project/llvm/lib/Support/SourceMgr.cpp')
-rw-r--r-- | contrib/llvm-project/llvm/lib/Support/SourceMgr.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/llvm-project/llvm/lib/Support/SourceMgr.cpp b/contrib/llvm-project/llvm/lib/Support/SourceMgr.cpp index 89b7dc939dfc..2eb2989b200b 100644 --- a/contrib/llvm-project/llvm/lib/Support/SourceMgr.cpp +++ b/contrib/llvm-project/llvm/lib/Support/SourceMgr.cpp @@ -292,8 +292,7 @@ SMDiagnostic SourceMgr::GetMessage(SMLoc Loc, SourceMgr::DiagKind Kind, // Convert any ranges to column ranges that only intersect the line of the // location. - for (unsigned i = 0, e = Ranges.size(); i != e; ++i) { - SMRange R = Ranges[i]; + for (SMRange R : Ranges) { if (!R.isValid()) continue; |