MCPcopy Create free account
hub / github.com/couchbase/fleece / pop_back

Function pop_back

Fleece/Support/SmallVector.hh:132–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130 T& push_back(T&& t) {return * new(grow()) T(std::move(t));}
131
132 void pop_back() {get(_size - 1).~T(); --_size;}
133
134 template <class... Args>
135 T& emplace_back(Args&&... args) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected