mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Add pop_back() to TracyVector.
This commit is contained in:
parent
3c00ce0958
commit
b208df8829
@ -134,6 +134,12 @@ public:
|
||||
return begin;
|
||||
}
|
||||
|
||||
void pop_back()
|
||||
{
|
||||
assert( m_size > 0 );
|
||||
m_size--;
|
||||
}
|
||||
|
||||
void reserve( size_t cap )
|
||||
{
|
||||
if( cap <= Capacity() ) return;
|
||||
|
Loading…
Reference in New Issue
Block a user