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...@locus.apache.org on 2000/07/11 17:28:58 UTC

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

dbertoni    00/07/11 08:28:55

  Modified:    c/src/PlatformSupport ReusableArenaBlock.hpp
  Log:
  Removed asserts that were causing infinite recursion.
  
  Revision  Changes    Path
  1.4       +0 -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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ReusableArenaBlock.hpp	2000/07/10 22:45:28	1.3
  +++ ReusableArenaBlock.hpp	2000/07/11 15:28:51	1.4
  @@ -210,8 +210,6 @@
   	virtual bool
   	shouldDestroyBlock(const ObjectType*	theObject) const
   	{
  -		assert(ownsObject(theObject) == true);
  -
   		return !isOnFreeList(theObject);
   	}
   
  @@ -243,8 +241,6 @@
   		}
   		else
   		{
  -			assert(ownsObject(theObject) == true);
  -
   			const size_type		theOffset =
   					getBlockOffset(theObject);