Changeset 41167 in vbox
- Timestamp:
- May 4, 2012 1:33:33 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/uniread.cpp
r33560 r41167 1077 1077 /* figure how far off the next chunk is */ 1078 1078 unsigned iSameCase = i; 1079 while ( g_aCPInfo[iSameCase].SimpleUpperCaseMapping == g_aCPInfo[iSameCase].CodePoint1080 && iSameCase < RT_ELEMENTS(g_aCPInfo)1079 while ( iSameCase < RT_ELEMENTS(g_aCPInfo) 1080 && g_aCPInfo[iSameCase].SimpleUpperCaseMapping == g_aCPInfo[iSameCase].CodePoint 1081 1081 && iSameCase >= 256) 1082 1082 iSameCase++; … … 1124 1124 /* figure how far off the next chunk is */ 1125 1125 unsigned iSameCase = i; 1126 while ( g_aCPInfo[iSameCase].SimpleLowerCaseMapping == g_aCPInfo[iSameCase].CodePoint1127 && iSameCase < RT_ELEMENTS(g_aCPInfo)1126 while ( iSameCase < RT_ELEMENTS(g_aCPInfo) 1127 && g_aCPInfo[iSameCase].SimpleLowerCaseMapping == g_aCPInfo[iSameCase].CodePoint 1128 1128 && iSameCase >= 256) 1129 1129 iSameCase++;
Note:
See TracChangeset
for help on using the changeset viewer.