Changeset 494 for trunk


Ignore:
Timestamp:
1999-09-01T10:39:28+12:00 (25 years ago)
Author:
rjmcnab
Message:

Changes for AIX.

File:
1 edited

Legend:

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

    r194 r494  
    1212/*
    1313   $Log$
     14   Revision 1.2  1999/08/31 22:39:28  rjmcnab
     15   Changes for AIX.
     16
    1417   Revision 1.1  1999/03/09 20:53:13  rjmcnab
    1518   Moved from src/recpt.
     
    136139
    137140
    138 void splitmapentry (const text_t &map, text_t &from, text_t &to) {
     141void splitmapentry (const text_t &mapentry, text_t &from, text_t &to) {
    139142  from.clear ();
    140143  to.clear();
    141144
    142   text_t::const_iterator here = map.begin();
    143   text_t::const_iterator end = map.end();
     145  text_t::const_iterator here = mapentry.begin();
     146  text_t::const_iterator end = mapentry.end();
    144147
    145148  // get the "from" part of the map
     
    168171}
    169172
    170 void joinmapentry (const text_t &from, const text_t &to, text_t &map) {
    171   map = from;
    172   map += "->";
    173   map += to;
     173void joinmapentry (const text_t &from, const text_t &to, text_t &mapentry) {
     174  mapentry = from;
     175  mapentry += "->";
     176  mapentry += to;
    174177}
Note: See TracChangeset for help on using the changeset viewer.