| 91 | //! Implement specialized version of PutN() with memset() for better performance. |
| 92 | template<> |
| 93 | inline void PutN(GenericStringBuffer<UTF8<> >& stream, char c, size_t n) { |
| 94 | std::memset(stream.stack_.Push<char>(n), c, n * sizeof(c)); |
| 95 | } |
| 96 | |
| 97 | RAPIDJSON_NAMESPACE_END |
| 98 |
nothing calls this directly
no outgoing calls
no test coverage detected