diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2014-03-13 16:15:17 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2014-03-13 16:15:17 +0000 |
| commit | 445a939db82713007c9b532144a405f05a587c52 (patch) | |
| tree | 78f3bf4dc5062831861e5d0cf970465c33b500ab /clang/lib/CodeGen/CGExprConstant.cpp | |
| parent | 996e992bf2c0d8a3555422d312dbb9e952b87359 (diff) | |
| download | bcm5719-llvm-445a939db82713007c9b532144a405f05a587c52.tar.gz bcm5719-llvm-445a939db82713007c9b532144a405f05a587c52.zip | |
[C++11] Replacing CXXRecordDecl iterators vbases_begin() and vbases_end() with iterator_range vbases(). Updating all of the usages of the iterators with range-based for loops.
llvm-svn: 203808
Diffstat (limited to 'clang/lib/CodeGen/CGExprConstant.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGExprConstant.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGExprConstant.cpp b/clang/lib/CodeGen/CGExprConstant.cpp index 34aa3018fca..82382ddf688 100644 --- a/clang/lib/CodeGen/CGExprConstant.cpp +++ b/clang/lib/CodeGen/CGExprConstant.cpp @@ -1372,10 +1372,9 @@ static llvm::Constant *EmitNullConstant(CodeGenModule &CGM, // Fill in the virtual bases, if we're working with the complete object. if (asCompleteObject) { - for (CXXRecordDecl::base_class_const_iterator - I = record->vbases_begin(), E = record->vbases_end(); I != E; ++I) { + for (const auto &I : record->vbases()) { const CXXRecordDecl *base = - cast<CXXRecordDecl>(I->getType()->castAs<RecordType>()->getDecl()); + cast<CXXRecordDecl>(I.getType()->castAs<RecordType>()->getDecl()); // Ignore empty bases. if (base->isEmpty()) |

