You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2001/11/28 16:39:27 UTC

cvs commit: xml-xerces/c/src/util XMLFloat.hpp XMLDouble.hpp XMLAbstractDoubleFloat.hpp

peiyongz    01/11/28 07:39:27

  Modified:    c/src/util XMLFloat.hpp XMLDouble.hpp
                        XMLAbstractDoubleFloat.hpp
  Log:
  return Type& for operator=
  
  Revision  Changes    Path
  1.9       +6 -2      xml-xerces/c/src/util/XMLFloat.hpp
  
  Index: XMLFloat.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/XMLFloat.hpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XMLFloat.hpp	2001/11/22 20:23:00	1.8
  +++ XMLFloat.hpp	2001/11/28 15:39:26	1.9
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: XMLFloat.hpp,v 1.8 2001/11/22 20:23:00 peiyongz Exp $
  + * $Id: XMLFloat.hpp,v 1.9 2001/11/28 15:39:26 peiyongz Exp $
    * $Log: XMLFloat.hpp,v $
  + * Revision 1.9  2001/11/28 15:39:26  peiyongz
  + * return Type& for operator=
  + *
    * Revision 1.8  2001/11/22 20:23:00  peiyongz
    * _declspec(dllimport) and inline warning C4273
    *
  @@ -135,7 +138,7 @@
       // assignment ctor
       //
       XMLFloat(const XMLFloat& toCopy);
  -    operator=(const XMLFloat& toAssign);
  +    XMLFloat& operator=(const XMLFloat& toAssign);
   
   };
   
  @@ -147,3 +150,4 @@
   }
   
   #endif
  +
  
  
  
  1.11      +6 -2      xml-xerces/c/src/util/XMLDouble.hpp
  
  Index: XMLDouble.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/XMLDouble.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- XMLDouble.hpp	2001/11/22 20:23:00	1.10
  +++ XMLDouble.hpp	2001/11/28 15:39:26	1.11
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: XMLDouble.hpp,v 1.10 2001/11/22 20:23:00 peiyongz Exp $
  + * $Id: XMLDouble.hpp,v 1.11 2001/11/28 15:39:26 peiyongz Exp $
    * $Log: XMLDouble.hpp,v $
  + * Revision 1.11  2001/11/28 15:39:26  peiyongz
  + * return Type& for operator=
  + *
    * Revision 1.10  2001/11/22 20:23:00  peiyongz
    * _declspec(dllimport) and inline warning C4273
    *
  @@ -140,7 +143,7 @@
       // assignment ctor
       //
        XMLDouble(const XMLDouble& toCopy);
  -     operator=(const XMLDouble& toAssign);
  +     XMLDouble& operator=(const XMLDouble& toAssign);
   
   };
   
  @@ -152,3 +155,4 @@
   }
   
   #endif
  +
  
  
  
  1.4       +5 -2      xml-xerces/c/src/util/XMLAbstractDoubleFloat.hpp
  
  Index: XMLAbstractDoubleFloat.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/XMLAbstractDoubleFloat.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XMLAbstractDoubleFloat.hpp	2001/11/22 21:39:00	1.3
  +++ XMLAbstractDoubleFloat.hpp	2001/11/28 15:39:26	1.4
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: XMLAbstractDoubleFloat.hpp,v 1.3 2001/11/22 21:39:00 peiyongz Exp $
  + * $Id: XMLAbstractDoubleFloat.hpp,v 1.4 2001/11/28 15:39:26 peiyongz Exp $
    * $Log: XMLAbstractDoubleFloat.hpp,v $
  + * Revision 1.4  2001/11/28 15:39:26  peiyongz
  + * return Type& for operator=
  + *
    * Revision 1.3  2001/11/22 21:39:00  peiyongz
    * Allow "0.0" to be a valid lexcial representation of ZERO.
    *
  @@ -164,7 +167,7 @@
       // assignment ctor
       //
       XMLAbstractDoubleFloat(const XMLAbstractDoubleFloat& toCopy);
  -    operator=(const XMLAbstractDoubleFloat& toAssign);
  +    XMLAbstractDoubleFloat& operator=(const XMLAbstractDoubleFloat& toAssign);
   
       inline bool           isSpecialValue() const;
   
  
  
  

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