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

Method pop

Fleece/Core/Encoder.cc:691–695  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

689 }
690
691 void Encoder::pop() {
692 throwIf(_stackDepth <= 1, InternalError, "Encoder stack underflow!");
693 --_stackDepth;
694 _items = &_stack[_stackDepth - 1];
695 }
696
697 void Encoder::beginArray(size_t reserve) {
698 push(kArrayTag, reserve);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected