Ignore:
Timestamp:
2005-04-08T14:22:41+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/gsdl/src/oaiservr/oaiconfig.cpp

    r8311 r9608  
    5050    while (here != end) {       
    5151      this->configureCollection(gsdlhome, *here);
    52       here ++;
     52      ++here;
    5353    }
    5454  }
     
    6464  while (here != end) {
    6565    delete here->second;
    66     here ++;
     66    ++here;
    6767  }
    6868}
     
    157157      exit(1);
    158158    }
    159     for (int c = 0; c < cfgline.size(); c ++) {
     159    for (int c = 0; c < cfgline.size(); ++c) {
    160160      this->collectList.push_back(cfgline[c]);
    161161    }
     
    198198      }
    199199      else {
    200     line ++;
     200    ++line;
    201201      }
    202202    }
     
    222222      }
    223223      else {
    224     line ++;
     224    ++line;
    225225      }
    226226    }
Note: See TracChangeset for help on using the changeset viewer.