| 89 | //! Write character to a stream, presuming buffer is reserved. |
| 90 | template<typename Stream> |
| 91 | inline void PutUnsafe(Stream& stream, typename Stream::Ch c) { |
| 92 | stream.Put(c); |
| 93 | } |
| 94 | |
| 95 | //! Put N copies of a character to a stream. |
| 96 | template<typename Stream, typename Ch> |
no test coverage detected