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 2003/05/21 23:11:22 UTC

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

knoaman     2003/05/21 14:11:22

  Modified:    c/src/xercesc/util XMemory.hpp
  Log:
  The HP-UX compiler is complaining about the duplicate overload of delete.
  
  Revision  Changes    Path
  1.2       +4 -1      xml-xerces/c/src/xercesc/util/XMemory.hpp
  
  Index: XMemory.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMemory.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMemory.hpp	30 Apr 2003 15:49:51 -0000	1.1
  +++ XMemory.hpp	21 May 2003 21:11:22 -0000	1.2
  @@ -108,6 +108,8 @@
         */
       void operator delete(void* p);
   
  +     //The HP compiler is complaining about duplicate overloading of delete
  +#if !defined(XML_HPUX)
       /**
         * This method provide a matching delete for the placement new
         *
  @@ -115,6 +117,7 @@
         * @param memMgr An appliation's memory manager
         */
       void operator delete(void* p, MemoryManager* memMgr);
  +#endif
   
       //@}
   
  
  
  

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