Use MapVector::pop_back() per LLVM r175538.

llvm-svn: 175539
This commit is contained in:
Douglas Gregor 2013-02-19 18:26:28 +00:00
parent b1c67569c3
commit cb15f086a5
1 changed files with 1 additions and 1 deletions

View File

@ -6998,7 +6998,7 @@ void ASTReader::finishPendingActions() {
// FIXME: std::move
IdentifierInfo *II = PendingIdentifierInfos.back().first;
SmallVector<uint32_t, 4> DeclIDs = PendingIdentifierInfos.back().second;
PendingIdentifierInfos.erase(II);
PendingIdentifierInfos.pop_back();
SetGloballyVisibleDecls(II, DeclIDs, &TopLevelDecls[II]);
}