| 991 | } |
| 992 | |
| 993 | size_t lString16Collection::add( const lString16 & str ) |
| 994 | { |
| 995 | reserve( 1 ); |
| 996 | chunks[count] = str.pchunk; |
| 997 | str.addref(); |
| 998 | return count++; |
| 999 | } |
| 1000 | void lString16Collection::clear() |
| 1001 | { |
| 1002 | for (size_t i=0; i<count; i++) |
nothing calls this directly
no test coverage detected