1
0
mirror of https://github.com/RPCS3/llvm.git synced 2025-04-04 14:22:26 +00:00

add a new pop_back_val method which returns the value popped. This is

heretical from a STL standpoint, but is oh-so-useful for things that 
can't throw exceptions when copied, like, well, everything in LLVM.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60587 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-12-05 07:11:05 +00:00
parent 2ce7f2068f
commit 7f50863e52

@ -162,6 +162,12 @@ public:
End->~T();
}
T pop_back_val() {
T Result = back();
pop_back();
return Result;
}
void clear() {
destroy_range(Begin, End);
End = Begin;