Ignore:
Timestamp:
2002-02-04T10:49:17+13:00 (22 years ago)
Author:
sjboddie
Message:

Fixed a few minor issues that surfaced when attempting to get compiling
under gcc-3.0 (note that mgpp still won't compile with gcc-3.0)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/receptionist.cpp

    r2773 r2937  
    456456  // be screwed up if maintainer is).
    457457  text_t::const_iterator maintainer_end = configinfo.maintainer.end ();
    458   text_t::const_iterator maintainer_here = findchar (configinfo.maintainer.begin(),
     458  text_t::const_iterator maintainer_here = findchar ((text_t::const_iterator)configinfo.maintainer.begin(),
    459459                             maintainer_end, '@');
    460460  if (maintainer_here == maintainer_end) {
     
    605605   
    606606  text_t::const_iterator end = cookiestring.end(); 
    607   text_t::const_iterator here = findchar (cookiestring.begin(), end, 'G');
     607  text_t::const_iterator here = findchar ((text_t::const_iterator)cookiestring.begin(), end, 'G');
    608608
    609609  while (here+9 < end) {
     
    613613      return true;
    614614    }
    615     here = findchar (cookiestring.begin(), end, 'G');
     615    here = findchar ((text_t::const_iterator)cookiestring.begin(), end, 'G');
    616616  }
    617617
     
    636636   
    637637    text_t::const_iterator end = cookiestring.end(); 
    638     text_t::const_iterator here = findchar (cookiestring.begin(), end, 'G');
     638    text_t::const_iterator here = findchar ((text_t::const_iterator)cookiestring.begin(), end, 'G');
    639639
    640640    while (here+9 < end) {
    641641      if (substr(here, here+8) == "GSDL_UID") return true;
    642       here = findchar (cookiestring.begin(), end, 'G');
     642      here = findchar ((text_t::const_iterator)cookiestring.begin(), end, 'G');
    643643    }
    644644  }
Note: See TracChangeset for help on using the changeset viewer.