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 2001/12/13 18:21:30 UTC

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

dbertoni    01/12/13 09:21:30

  Modified:    c/src/PlatformSupport ArenaBlock.hpp
  Log:
  Added workaround for broken IBM compiler.
  
  Revision  Changes    Path
  1.13      +4 -0      xml-xalan/c/src/PlatformSupport/ArenaBlock.hpp
  
  Index: ArenaBlock.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/ArenaBlock.hpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ArenaBlock.hpp	2001/09/26 14:10:06	1.12
  +++ ArenaBlock.hpp	2001/12/13 17:21:30	1.13
  @@ -128,7 +128,11 @@
   	void
   	operator()(ObjectType&	theObject) const
   	{
  +#if defined(XALAN_EXPLICIT_SCOPE_IN_TEMPLATE_BUG)
  +		theObject.~ObjectType();
  +#else
   		theObject.ObjectType::~ObjectType();
  +#endif
   	}
   };
   
  
  
  

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