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/oaiargs.cpp

    r8228 r9608  
    3737
    3838      // move to the next character
    39       here ++;
     39      ++here;
    4040
    4141      // and refill the buffer as necessary
     
    5656    else {
    5757      label.setcarr((char *) start, (int) equals - (int) start);
    58       equals ++;
     58      ++equals;
    5959      value.setcarr((char *) equals, (int) here - (int) equals);
    6060    }
     
    7777    // inifinite loops above
    7878    if (*here == '&') {
    79       here ++;
     79      ++here;
    8080    }
    8181  }
     
    8989  while (*currentPtr != end) {
    9090    *fill = **currentPtr;
    91     *currentPtr ++;
     91    ++*currentPtr;
    9292  }
    9393
Note: See TracChangeset for help on using the changeset viewer.