dbertoni    2002/09/25 13:25:26

  Modified:    c/src/PlatformSupport ReusableArenaBlock.hpp
  Log:
  Added this-> qualifier.
  
  Revision  Changes    Path
  1.9       +4 -4      xml-xalan/c/src/PlatformSupport/ReusableArenaBlock.hpp
  
  Index: ReusableArenaBlock.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/ReusableArenaBlock.hpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ReusableArenaBlock.hpp    25 Sep 2001 21:12:51 -0000      1.8
  +++ ReusableArenaBlock.hpp    25 Sep 2002 20:25:25 -0000      1.9
  @@ -185,7 +185,7 @@
        {
                assert(ownsObject(theObject) == true);
   
  -             m_destroyFunction(*theObject);
  +             this->m_destroyFunction(*theObject);
   
                addToFreeList(theObject);
        }
  @@ -237,7 +237,7 @@
                else
                {
                        const size_type         theOffset =
  -                                     getBlockOffset(theObject);
  +                                     this->getBlockOffset(theObject);
   
                        return m_freeList.isSet(theOffset);
                }
  @@ -254,7 +254,7 @@
        addToFreeList(const ObjectType*         theObject)
        {
                const size_type         theOffset =
  -                             getBlockOffset(theObject);
  +                             this->getBlockOffset(theObject);
   
                m_freeList.set(theOffset);
   
  @@ -272,7 +272,7 @@
        removeFromFreeList(const ObjectType*    theObject)
        {
                const size_type         theOffset =
  -                             getBlockOffset(theObject);
  +                             this->getBlockOffset(theObject);
   
                m_freeList.clear(theOffset);
   
  
  
  

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

Reply via email to