Changeset 5831 for trunk/src


Ignore:
Timestamp:
May 30, 2001, 4:44:55 AM (24 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/ccollection.cpp

    r5830 r5831  
    1 /* $Id: ccollection.cpp,v 1.1 2001-05-30 01:31:05 phaller Exp $ */
     1/* $Id: ccollection.cpp,v 1.2 2001-05-30 02:44:55 phaller Exp $ */
    22
    33/*
     
    720720    int iNewSize = nextPrime(iElements);
    721721
     722    // check if rehashing is necessary at all
     723    if (iSize == iNewSize)
     724        return;
     725
    722726    // save old array, allocate new array
    723727    CLinearList** parrNew = new CLinearList* [iNewSize];
Note: See TracChangeset for help on using the changeset viewer.