You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by kn...@apache.org on 2002/05/08 21:05:29 UTC

cvs commit: xml-xerces/c/src/xercesc/util NameIdPool.c

knoaman     02/05/08 12:05:29

  Modified:    c/src/xercesc/util NameIdPool.c
  Log:
  [Bug 7701] NameIdPoolEnumerator copy constructor should call base class - fix by Martin Kalen
  
  Revision  Changes    Path
  1.2       +5 -1      xml-xerces/c/src/xercesc/util/NameIdPool.c
  
  Index: NameIdPool.c
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/NameIdPool.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NameIdPool.c	1 Feb 2002 22:22:11 -0000	1.1
  +++ NameIdPool.c	8 May 2002 19:05:29 -0000	1.2
  @@ -56,8 +56,11 @@
   
   /**
    * $Log: NameIdPool.c,v $
  - * Revision 1.1  2002/02/01 22:22:11  peiyongz
  - * Initial revision
  + * Revision 1.2  2002/05/08 19:05:29  knoaman
  + * [Bug 7701] NameIdPoolEnumerator copy constructor should call base class - fix by Martin Kalen
  + *
  + * Revision 1.1.1.1  2002/02/01 22:22:11  peiyongz
  + * sane_include
    *
    * Revision 1.3  2000/03/02 19:54:42  roddey
    * This checkin includes many changes done while waiting for the
  @@ -344,7 +347,8 @@
   template <class TElem> NameIdPoolEnumerator<TElem>::
   NameIdPoolEnumerator(NameIdPool<TElem>* const toEnum) :
   
  -    fCurIndex(0)
  +    XMLEnumerator<TElem>()
  +    , fCurIndex(0)
       , fToEnum(toEnum)
   {
       //
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org