| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected