Changeset 48076 in vbox
- Timestamp:
- Aug 27, 2013 4:20:58 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/ministring.h
r44528 r48076 426 426 { 427 427 /* Folding an UTF-8 string may result in a shorter encoding (see 428 testcase), so recalculate the length afterwar s. */428 testcase), so recalculate the length afterwards. */ 429 429 ::RTStrToUpper(m_psz); 430 430 size_t cchNew = strlen(m_psz); … … 445 445 { 446 446 /* Folding an UTF-8 string may result in a shorter encoding (see 447 testcase), so recalculate the length afterwar s. */447 testcase), so recalculate the length afterwards. */ 448 448 ::RTStrToLower(m_psz); 449 449 size_t cchNew = strlen(m_psz);
Note:
See TracChangeset
for help on using the changeset viewer.