Ignore:
Timestamp:
2005-04-08T16:01:06+12:00 (19 years ago)
Author:
kjdon
Message:

added in x++ -> ++x changes submitted by Emanuel Dejanu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/indexers/mgpp/text/mgpp_invf_dump.cpp

    r3365 r9613  
    6464    unsigned long fragNum = 0;
    6565    unsigned long i;
    66     for (i=0; i<wordEl.frag_occur; i++) {
     66    for (i=0; i<wordEl.frag_occur; ++i) {
    6767      unsigned long delta = buffer.bblock_decode (B, NULL);
    6868      fragNum += delta;
     
    101101    unsigned long fragNum = 0;
    102102    unsigned long i;
    103     for (i=0; i<tagEl.frag_occur; i++) {
     103    for (i=0; i<tagEl.frag_occur; ++i) {
    104104      unsigned long delta = buffer.bblock_decode (B, NULL)-1;
    105105      fragNum += delta;
     
    172172    word_dict_el wordEl;
    173173    wordEl.SetNumLevels (idh.num_levels);
    174     for (wordNum=0; wordNum<idh.word_dict_size; wordNum++) {
     174    for (wordNum=0; wordNum<idh.word_dict_size; ++wordNum) {
    175175      wordEl.Read (dictFile, idh.num_levels);
    176176      ReadUL (invfIdxFile, wordStart);
     
    184184    unsigned long tagStart;
    185185    dict_el tagEl;
    186     for (tagNum=0; tagNum<idh.tag_dict_size; tagNum++) {
     186    for (tagNum=0; tagNum<idh.tag_dict_size; ++tagNum) {
    187187      tagEl.Read (dictFile);
    188188      ReadUL (invfIdxFile, tagStart);
Note: See TracChangeset for help on using the changeset viewer.