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 2002/04/17 07:33:43 UTC

cvs commit: xml-xalan/c/src/XPath XPath.cpp

dbertoni    02/04/16 22:33:43

  Modified:    c/src/XPath XPath.cpp
  Log:
  Added pragma for Microsoft to prevent inlining.
  
  Revision  Changes    Path
  1.69      +5 -0      xml-xalan/c/src/XPath/XPath.cpp
  
  Index: XPath.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XPath.cpp,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- XPath.cpp	3 Apr 2002 05:13:09 -0000	1.68
  +++ XPath.cpp	17 Apr 2002 05:33:42 -0000	1.69
  @@ -3192,6 +3192,11 @@
   
   
   
  +// MSVC generates some really horrible code for some of these very simple functions when they're inlined...
  +#if defined(_MSC_VER)
  +#pragma auto_inline(off)
  +#endif
  +
   XPath::eMatchScore
   XPath::NodeTester::testComment(
   			const XalanNode& 		/* context */,
  
  
  

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