| 109 | //! Implement specialized version of PutN() with memset() for better performance. |
| 110 | template<> |
| 111 | inline void PutN(GenericStringBuffer<UTF8<> >& stream, char c, size_t n) { |
| 112 | std::memset(stream.stack_.Push<char>(n), c, n * sizeof(c)); |
| 113 | } |
| 114 | |
| 115 | CEREAL_RAPIDJSON_NAMESPACE_END |
| 116 |
nothing calls this directly
no outgoing calls
no test coverage detected