diff options
| -rw-r--r-- | clang/lib/Sema/SemaType.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/Sema/SemaType.cpp b/clang/lib/Sema/SemaType.cpp index 02a31ef8d79..aa6a45bafbd 100644 --- a/clang/lib/Sema/SemaType.cpp +++ b/clang/lib/Sema/SemaType.cpp @@ -211,10 +211,8 @@ namespace { /// Diagnose all the ignored type attributes, given that the /// declarator worked out to the given type. void diagnoseIgnoredTypeAttrs(QualType type) const { - for (SmallVectorImpl<AttributeList*>::const_iterator - i = ignoredTypeAttrs.begin(), e = ignoredTypeAttrs.end(); - i != e; ++i) - diagnoseBadTypeAttribute(getSema(), **i, type); + for (auto *Attr : ignoredTypeAttrs) + diagnoseBadTypeAttribute(getSema(), *Attr, type); } ~TypeProcessingState() { |

