Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ pop_back_impl
Method
pop_back_impl
src/fl/stl/basic_vector.cpp.hpp:177–184 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
175
}
176
177
void vector_basic::pop_back_impl() {
178
if (mSize == 0) return;
179
--mSize;
180
if (mOps) {
181
mOps->destroy(element_ptr(mSize));
182
}
183
// For trivial types, nothing to destroy
184
}
185
186
// ======= CLEAR =======
187
Callers
nothing calls this directly
Calls
1
destroy
Method · 0.45
Tested by
no test coverage detected