diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-03-06 23:45:36 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-03-06 23:45:36 +0000 |
commit | 86c9390673f4be9a4064b7f3aa3a25636465758c (patch) | |
tree | 41f242a1d9e359fc2c87cf3a462faa7170dabab7 /clang/lib/AST/DeclObjC.cpp | |
parent | 0e4b605e475690f8899c8a8a45e25b24138d2b82 (diff) | |
download | bcm5719-llvm-86c9390673f4be9a4064b7f3aa3a25636465758c.tar.gz bcm5719-llvm-86c9390673f4be9a4064b7f3aa3a25636465758c.zip |
[C++11] Replacing iterators redecls_begin() and redecls_end() with iterator_range redecls(). Updating all of the usages of the iterators with range-based for loops, which allows the begin/end forms to be removed entirely.
llvm-svn: 203179
Diffstat (limited to 'clang/lib/AST/DeclObjC.cpp')
-rw-r--r-- | clang/lib/AST/DeclObjC.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/clang/lib/AST/DeclObjC.cpp b/clang/lib/AST/DeclObjC.cpp index 94c4d5187a3..b76fc5cf38a 100644 --- a/clang/lib/AST/DeclObjC.cpp +++ b/clang/lib/AST/DeclObjC.cpp @@ -465,9 +465,8 @@ void ObjCInterfaceDecl::startDefinition() { allocateDefinitionData(); // Update all of the declarations with a pointer to the definition. - for (redecl_iterator RD = redecls_begin(), RDEnd = redecls_end(); - RD != RDEnd; ++RD) { - if (*RD != this) + for (auto RD : redecls()) { + if (RD != this) RD->Data = Data; } } @@ -1591,8 +1590,7 @@ void ObjCProtocolDecl::startDefinition() { allocateDefinitionData(); // Update all of the declarations with a pointer to the definition. - for (redecl_iterator RD = redecls_begin(), RDEnd = redecls_end(); - RD != RDEnd; ++RD) + for (auto RD : redecls()) RD->Data = this->Data; } |