Changeset 1960 in vbox for trunk/include
- Timestamp:
- Apr 5, 2007 4:35:31 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/string.h
r1220 r1960 246 246 * a null object will be created. 247 247 */ 248 Utf8Str (size_t aSize) : str (NULL)248 alloc (size_t aSize) 249 249 { 250 250 if (aSize) … … 258 258 str [0] = 0; 259 259 } 260 } 261 262 Utf8Str (size_t aSize) : str (NULL) 263 { 264 alloc(aSize); 260 265 } 261 266
Note:
See TracChangeset
for help on using the changeset viewer.