| 68 | //! Implement specialized version of PutN() with memset() for better performance. |
| 69 | template<> |
| 70 | inline void PutN(MemoryBuffer& memoryBuffer, char c, size_t n) { |
| 71 | std::memset(memoryBuffer.stack_.Push<char>(n), c, n * sizeof(c)); |
| 72 | } |
| 73 | |
| 74 | RAPIDJSON_NAMESPACE_END |
| 75 |
nothing calls this directly
no outgoing calls
no test coverage detected