| 41 | //! Implement specialized version of PutN() with memset() for better performance. |
| 42 | template<> |
| 43 | inline void PutN(GenericStringBuffer<UTF8<> >& stream, char c, size_t n) { |
| 44 | memset(stream.stack_.Push<char>(n), c, n * sizeof(c)); |
| 45 | } |
| 46 | |
| 47 | } // namespace rapidjson |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected