You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2004/08/21 00:38:06 UTC

cvs commit: xml-xalan/c/src/xalanc/PlatformSupport ArenaBlock.hpp ReusableArenaBlock.hpp

dbertoni    2004/08/20 15:38:06

  Modified:    c/src/xalanc/PlatformSupport ArenaBlock.hpp
                        ReusableArenaBlock.hpp
  Log:
  Fixed some "Koenig-lookup" problems.
  
  Revision  Changes    Path
  1.7       +1 -1      xml-xalan/c/src/xalanc/PlatformSupport/ArenaBlock.hpp
  
  Index: ArenaBlock.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/PlatformSupport/ArenaBlock.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ArenaBlock.hpp	12 Jul 2004 14:53:55 -0000	1.6
  +++ ArenaBlock.hpp	20 Aug 2004 22:38:06 -0000	1.7
  @@ -115,7 +115,7 @@
   	bool
   	ownsObject(const ObjectType*	theObject) const
   	{
  -		return isInBorders(theObject, this->m_objectCount);
  +		return this->isInBorders(theObject, this->m_objectCount);
   	}
   private:
   
  
  
  
  1.11      +1 -1      xml-xalan/c/src/xalanc/PlatformSupport/ReusableArenaBlock.hpp
  
  Index: ReusableArenaBlock.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/PlatformSupport/ReusableArenaBlock.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- ReusableArenaBlock.hpp	20 Aug 2004 20:23:35 -0000	1.10
  +++ ReusableArenaBlock.hpp	20 Aug 2004 22:38:06 -0000	1.11
  @@ -246,7 +246,7 @@
   	{
   		assert( block !=0 );
   
  -		return !( ownsBlock(reinterpret_cast<const ObjectType*>(block)) && block->isValidFor(this->m_blockSize) );
  +		return !( this->ownsBlock(reinterpret_cast<const ObjectType*>(block)) && block->isValidFor(this->m_blockSize) );
   	}
   
   private:
  
  
  

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