Changeset 103004 in vbox for trunk/include
- Timestamp:
- Jan 23, 2024 10:13:47 PM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161238
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/bldprog-strtab-template.cpp.h
r103000 r103004 1206 1206 if (BldProgBitIsSet(pThis->bmUsedChars, i) 1207 1207 # ifdef BLDPROG_STRTAB_PURE_ASCII 1208 ? pThis->aCompDict[i].cchString != 1 1208 ? pThis->aCompDict[i].cchString != 1U 1209 1209 # else 1210 ? pThis->aCompDict[i].cchString != (i != 0xff ? 1 : 0)1210 ? pThis->aCompDict[i].cchString != (i != 0xffU ? 1U : 0U) 1211 1211 # endif 1212 : pThis->aCompDict[i].cchString < 1 )1212 : pThis->aCompDict[i].cchString < 1U) 1213 1213 abort(); 1214 if (pThis->aCompDict[i].cchString > 1 )1214 if (pThis->aCompDict[i].cchString > 1U) 1215 1215 BldProgStrTab_CheckStrTabString(pThis, &pThis->aCompDict[i]); 1216 1216 }
Note:
See TracChangeset
for help on using the changeset viewer.