You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ca...@apache.org on 2005/04/26 19:58:12 UTC

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

cargilld    2005/04/26 10:58:12

  Modified:    c/src/xercesc/util Janitor.hpp
  Log:
  Fix for xercesc-1413: invalid operator equal template signature
  
  Revision  Changes    Path
  1.7       +4 -1      xml-xerces/c/src/xercesc/util/Janitor.hpp
  
  Index: Janitor.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/Janitor.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Janitor.hpp	8 Sep 2004 13:56:22 -0000	1.6
  +++ Janitor.hpp	26 Apr 2005 17:58:12 -0000	1.7
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2005/04/26 17:58:12  cargilld
  + * Fix for xercesc-1413: invalid operator equal template signature
  + *
    * Revision 1.6  2004/09/08 13:56:22  peiyongz
    * Apache License Version 2.0
    *
  @@ -143,7 +146,7 @@
       // -----------------------------------------------------------------------
   	ArrayJanitor();
       ArrayJanitor(const ArrayJanitor<T>& copy);
  -    ArrayJanitor& operator=(const ArrayJanitor<T>& copy);    
  +    ArrayJanitor<T>& operator=(const ArrayJanitor<T>& copy);    
   
       // -----------------------------------------------------------------------
       //  Private data members
  
  
  

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