[PATCH] D115067: [clang-format][NFC] Use range based for
Björn Schäpers via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Dec 3 11:58:51 PST 2021
HazardyKnusperkeks created this revision.
HazardyKnusperkeks added reviewers: MyDeveloperDay, curdeius, owenpan.
HazardyKnusperkeks added a project: clang-format.
HazardyKnusperkeks requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
That's much easier to read.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D115067
Files:
clang/lib/Format/TokenAnnotator.cpp
Index: clang/lib/Format/TokenAnnotator.cpp
===================================================================
--- clang/lib/Format/TokenAnnotator.cpp
+++ clang/lib/Format/TokenAnnotator.cpp
@@ -2373,11 +2373,9 @@
}
void TokenAnnotator::annotate(AnnotatedLine &Line) {
- for (SmallVectorImpl<AnnotatedLine *>::iterator I = Line.Children.begin(),
- E = Line.Children.end();
- I != E; ++I) {
- annotate(**I);
- }
+ for (auto &Child : Line.Children)
+ annotate(*Child);
+
AnnotatingParser Parser(Style, Line, Keywords);
Line.Type = Parser.parseLine();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D115067.391701.patch
Type: text/x-patch
Size: 625 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20211203/dcd9f910/attachment-0001.bin>
More information about the cfe-commits
mailing list