MCPcopy Create free account
hub / github.com/cinience/RedisStudio / CStdStringPtrMap

Method CStdStringPtrMap

DuiLib/Utils/Utils.cpp:815–821  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

813 };
814
815 CStdStringPtrMap::CStdStringPtrMap(int nSize) : m_nCount(0)
816 {
817 if( nSize < 16 ) nSize = 16;
818 m_nBuckets = nSize;
819 m_aT = new TITEM*[nSize];
820 memset(m_aT, 0, nSize * sizeof(TITEM*));
821 }
822
823 CStdStringPtrMap::~CStdStringPtrMap()
824 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected