| 780 | |
| 781 | StackStream(internal::Stack<StackAllocator>& stack) : stack_(stack), length_(0) {} |
| 782 | RAPIDJSON_FORCEINLINE void Put(Ch c) { |
| 783 | *stack_.template Push<Ch>() = c; |
| 784 | ++length_; |
| 785 | } |
| 786 | |
| 787 | RAPIDJSON_FORCEINLINE void* Push(SizeType count) { |
| 788 | length_ += count; |
no outgoing calls
no test coverage detected