mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-02 05:02:55 +00:00
Fix srb2::StaticVec::pop_back
lmao
This commit is contained in:
parent
062d238f2f
commit
dfe49a5bf3
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ public:
|
|||
|
||||
void push_back(const T& value) { arr_[size_++] = value; }
|
||||
|
||||
void pop_back() { arr_[size_--] = T(); }
|
||||
void pop_back() { arr_[--size_] = T(); }
|
||||
|
||||
void resize(size_t size, T value = T())
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue