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 2004/11/13 20:04:04 UTC

cvs commit: xml-xerces/c/src/xercesc/internal XSerializeEngine.hpp

cargilld    2004/11/13 11:04:04

  Modified:    c/src/xercesc/internal XSerializeEngine.hpp
  Log:
  Remove extra const.
  
  Revision  Changes    Path
  1.22      +12 -9     xml-xerces/c/src/xercesc/internal/XSerializeEngine.hpp
  
  Index: XSerializeEngine.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XSerializeEngine.hpp,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- XSerializeEngine.hpp	8 Nov 2004 03:56:47 -0000	1.21
  +++ XSerializeEngine.hpp	13 Nov 2004 19:04:04 -0000	1.22
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.22  2004/11/13 19:04:04  cargilld
  + * Remove extra const.
  + *
    * Revision 1.21  2004/11/08 03:56:47  peiyongz
    * setting/getting Storer level
    *
  @@ -625,16 +628,16 @@
         *
         ***/
       inline 
  -    const unsigned long   getBufSize()    const; 
  +    unsigned long   getBufSize()    const; 
   
       inline 
  -    const unsigned long   getBufCur()     const; 
  +    unsigned long   getBufCur()     const; 
   
       inline 
  -    const unsigned long   getBufCurAccumulated()     const; 
  +    unsigned long   getBufCurAccumulated()     const; 
   
       inline 
  -    const unsigned long   getBufCount()    const; 
  +    unsigned long   getBufCount()    const; 
   
       void                  trace(char*)     const;
   
  @@ -874,25 +877,25 @@
   }
   
   inline 
  -const unsigned long XSerializeEngine::getBufSize() const
  +unsigned long XSerializeEngine::getBufSize() const
   {
       return fBufSize;
   }
   
   inline 
  -const unsigned long XSerializeEngine::getBufCur() const
  +unsigned long XSerializeEngine::getBufCur() const
   {
       return (fBufCur-fBufStart);
   }
   
   inline 
  -const unsigned long XSerializeEngine::getBufCurAccumulated() const
  +unsigned long XSerializeEngine::getBufCurAccumulated() const
   {
       return (fBufCount - (isStoring() ? 0: 1)) * fBufSize + (fBufCur-fBufStart);
   }
   
   inline 
  -const unsigned long XSerializeEngine::getBufCount() const
  +unsigned long XSerializeEngine::getBufCount() const
   {
       return fBufCount;
   }
  
  
  

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