| 223 | public: |
| 224 | |
| 225 | StringCache() : m_prevId(0), m_ioBuffer(nullptr), m_ioBufferLen(0) |
| 226 | { |
| 227 | m_idToStringMap.reserve(100); |
| 228 | } |
| 229 | |
| 230 | template < typename F > |
| 231 | StringCache( F &f ) : m_prevId(0), m_ioBuffer(nullptr), m_ioBufferLen(0) |
nothing calls this directly
no test coverage detected