Ignore:
Timestamp:
1999-07-09T14:19:44+12:00 (25 years ago)
Author:
rjmcnab
Message:

Fixed a couple of compiler conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/queryfilter.cpp

    r355 r358  
    1212/*
    1313   $Log$
     14   Revision 1.12  1999/07/09 02:19:43  rjmcnab
     15   Fixed a couple of compiler conflicts
     16
    1417   Revision 1.11  1999/07/08 20:49:44  rjmcnab
    1518   Added result_num to the ResultDocInto_t structure.
     
    160163
    161164  // set defaults for the return parameters
    162   query_params.clear();
     165  query_params.erase(query_params.begin(), query_params.end());
    163166  startresults = filterOptions["StartResults"].defaultValue.getint();
    164167  endresults = filterOptions["EndResults"].defaultValue.getint();
     
    302305
    303306      // add the term variants
    304       multiresults.termvariants.insert(thisqueryresults.termvariants.begin(),
    305                        thisqueryresults.termvariants.end());
     307      text_tset::iterator termvar_here = thisqueryresults.termvariants.begin();
     308      text_tset::iterator termvar_end = thisqueryresults.termvariants.end();
     309      while (termvar_here != termvar_end) {
     310    multiresults.termvariants.insert(*termvar_here);
     311    termvar_here++;
     312      }
    306313    }
    307314   
Note: See TracChangeset for help on using the changeset viewer.