Changeset 98009 in vbox for trunk/include
- Timestamp:
- Jan 6, 2023 2:45:10 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155103
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/bldprog-strtab-template.cpp.h
r96577 r98009 379 379 if (chSep != '\0') 380 380 { 381 BLDPROGWORDFREQSTATS NewWord = { 0, 0, chSep };381 BLDPROGWORDFREQSTATS const NewWord = { 0, 0, chSep }; 382 382 pThis->Frequencies[strWord] = NewWord; 383 383 } 384 384 else 385 # endif386 385 { 387 static BLDPROGWORDFREQSTATS s_NewWord = {0 };386 static BLDPROGWORDFREQSTATS const s_NewWord = { 0, 0, 0 }; 388 387 pThis->Frequencies[strWord] = s_NewWord; 389 388 } 389 # else 390 pThis->Frequencies[strWord].cWithoutSep = 0; 391 # endif 390 392 } 391 393
Note:
See TracChangeset
for help on using the changeset viewer.