You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by tn...@apache.org on 2003/03/07 19:17:12 UTC

cvs commit: xml-xerces/c/src/xercesc/validators/DTD DocTypeHandler.hpp DTDEntityDecl.hpp

tng         2003/03/07 10:17:12

  Modified:    c/src/xercesc/validators/DTD DocTypeHandler.hpp
                        DTDEntityDecl.hpp
  Log:
  Return a reference instead of void for operator=
  
  Revision  Changes    Path
  1.4       +4 -1      xml-xerces/c/src/xercesc/validators/DTD/DocTypeHandler.hpp
  
  Index: DocTypeHandler.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/DTD/DocTypeHandler.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DocTypeHandler.hpp	4 Nov 2002 14:50:40 -0000	1.3
  +++ DocTypeHandler.hpp	7 Mar 2003 18:17:12 -0000	1.4
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.4  2003/03/07 18:17:12  tng
  + * Return a reference instead of void for operator=
  + *
    * Revision 1.3  2002/11/04 14:50:40  tng
    * C++ Namespace Support.
    *
  @@ -207,7 +210,7 @@
       //  Unimplemented constructors and operators
       // -----------------------------------------------------------------------
       DocTypeHandler(const DocTypeHandler&);
  -    void operator=(const DocTypeHandler&);
  +    DocTypeHandler& operator=(const DocTypeHandler&);
   };
   
   XERCES_CPP_NAMESPACE_END
  
  
  
  1.3       +4 -1      xml-xerces/c/src/xercesc/validators/DTD/DTDEntityDecl.hpp
  
  Index: DTDEntityDecl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/DTD/DTDEntityDecl.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DTDEntityDecl.hpp	4 Nov 2002 14:50:40 -0000	1.2
  +++ DTDEntityDecl.hpp	7 Mar 2003 18:17:12 -0000	1.3
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.3  2003/03/07 18:17:12  tng
  + * Return a reference instead of void for operator=
  + *
    * Revision 1.2  2002/11/04 14:50:40  tng
    * C++ Namespace Support.
    *
  @@ -142,7 +145,7 @@
       //  Unimplemented constructors and operators
       // -----------------------------------------------------------------------
       DTDEntityDecl(const DTDEntityDecl&);
  -    void operator=(DTDEntityDecl&);
  +    DTDEntityDecl& operator=(DTDEntityDecl&);
   
   
       // -----------------------------------------------------------------------
  
  
  

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