tng         2003/03/07 10:06:57

  Modified:    c/src/xercesc/dom/deprecated DStringPool.hpp
  Log:
  Return a reference instead of void for operator=
  
  Revision  Changes    Path
  1.4       +1 -1      xml-xerces/c/src/xercesc/dom/deprecated/DStringPool.hpp
  
  Index: DStringPool.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/deprecated/DStringPool.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DStringPool.hpp   4 Nov 2002 15:04:44 -0000       1.3
  +++ DStringPool.hpp   7 Mar 2003 18:06:55 -0000       1.4
  @@ -104,7 +104,7 @@
   
   private:
       DStringPool(const DStringPool &other);      // Copy constructor and assignment
  -    void operator = (const DStringPool &other); //  of DStringPool are not 
supported.
  +    DStringPool& operator = (const DStringPool &other); //  of DStringPool are not 
supported.
   
       DStringPoolEntry **fHashTable;
       int              fHashTableSize;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to