dbertoni 01/09/17 14:10:05
Modified: c/src/XSLT StylesheetHandler.cpp
Log:
Work-around for gcc bug.
Revision Changes Path
1.71 +3 -1 xml-xalan/c/src/XSLT/StylesheetHandler.cpp
Index: StylesheetHandler.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetHandler.cpp,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- StylesheetHandler.cpp 2001/09/14 20:49:43 1.70
+++ StylesheetHandler.cpp 2001/09/17 21:10:00 1.71
@@ -252,7 +252,9 @@
const Locator* locator,
bool& fPreserve)
{
- const XalanQNameByValue theName(XalanDOMString(aname),
m_stylesheet.getNamespaces());
+ const XalanDOMString theAttributeName(aname);
+
+ const XalanQNameByValue theName(theAttributeName,
m_stylesheet.getNamespaces());
const bool isSpaceAttr =
s_spaceAttrQName.equals(theName);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]