MCPcopy Create free account
hub / github.com/couchbase/fleece / ~smallVectorBase

Method ~smallVectorBase

Fleece/Support/SmallVectorBase.hh:39–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37 smallVectorBase(uint32_t cap) noexcept :_isBig(false), _size(0), _capacity(cap) { }
38
39 ~smallVectorBase() {
40 if (_isBig)
41 ::free(_dataPointer);
42 }
43
44
45 // Throws if size/capacity is too big, and returns cast to uint32_t

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected