| 62 | //! Implement specialized version of PutN() with memset() for better performance. |
| 63 | template<> |
| 64 | inline void PutN(MemoryBuffer& memoryBuffer, char c, size_t n) { |
| 65 | std::memset(memoryBuffer.stack_.Push<char>(n), c, n * sizeof(c)); |
| 66 | } |
| 67 | |
| 68 | CEREAL_RAPIDJSON_NAMESPACE_END |
| 69 |
nothing calls this directly
no outgoing calls
no test coverage detected