Changeset 80838 in vbox for trunk/include/VBox/com/string.h
- Timestamp:
- Sep 17, 2019 12:48:36 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133408
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/string.h
r80836 r80838 638 638 } 639 639 640 #if 0641 640 /** 642 641 * Shortcut to append(), char variant. … … 650 649 return append(ch); 651 650 } 652 #endif653 651 654 652 /** @} */ 653 654 /** 655 * Erases a sequence from the string. 656 * 657 * @returns Reference to the object. 658 * @param offStart Where in @a this string to start erasing (UTF-16 659 * units, not codepoints). 660 * @param cwcLength How much following @a offStart to erase (UTF-16 661 * units, not codepoints). 662 */ 663 Bstr &erase(size_t offStart = 0, size_t cwcLength = RTSTR_MAX) RT_NOEXCEPT; 664 655 665 656 666 #if defined(VBOX_WITH_XPCOM)
Note:
See TracChangeset
for help on using the changeset viewer.