Changeset 97c215f for libcfa/src/containers
- Timestamp:
- Jan 23, 2022, 5:29:07 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- f5a51db
- Parents:
- 12c1eef
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/containers/string_res.cfa
r12c1eef r97c215f 980 980 int AmountUsed, AmountFree; 981 981 982 // assert( false );983 984 982 AmountUsed = 0; 985 983 for ( HandleNode *i = Header.flink; i != &Header; i = i->flink ) { // calculate amount of byte area used … … 996 994 // reduce(( AmountFree / CurrSize - 3 ) * CurrSize ); // reduce the memory 997 995 998 } // if 999 compaction(this); // compact the byte area, in the same or new heap area 996 // `extend` implies a `compaction` during the copy 997 998 } else { 999 compaction(this); // in-place 1000 }// if 1000 1001 #ifdef VbyteDebug 1001 1002 {
Note: See TracChangeset
for help on using the changeset viewer.