| 779 | typedef CharType Ch; |
| 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_; |
nothing calls this directly
no outgoing calls
no test coverage detected