| 546 | typedef typename Encoding::Ch Ch; |
| 547 | |
| 548 | GenericStringStream(const Ch *src) : src_(src), head_(src) {} |
| 549 | |
| 550 | Ch Peek() const { return *src_; } |
| 551 | Ch Take() { return *src_++; } |
nothing calls this directly
no outgoing calls
no test coverage detected