Changeset 257


Ignore:
Timestamp:
Sep 28, 2006, 2:11:50 PM (18 years ago)
Author:
garonne
Message:

see CL 312

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r228 r257  
     1
     22006-09-28 Vincent Garonne <garonne@lal.in2p3.fr> 312
     3
     4        * source/cmt_symbol.cxx: Bug fixed on the windows platform. 
    15
    262006-08-17 Vincent Garonne <garonne@lal.in2p3.fr> 311
  • CMT/HEAD/source/cmt_symbol.cxx

    r203 r257  
    883883          }
    884884           
    885           bool exist = false
     885      int exist = 0
    886886      for (int i = 0; i < j; ++i)
    887887      {
    888888          cmt_string& u = paths[i];
    889889          if (u == t)
    890              exist = true;
     890             exist = 1;
    891891      }           
    892       if (not exist)
     892      if (exist==0)
    893893      {
    894894          cmt_string& s = normalyzed_paths.add ();
Note: See TracChangeset for help on using the changeset viewer.