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/12/28 03:27:40 UTC

cvs commit: xml-xalan/c/src/xalanc/XSLT Stylesheet.cpp

dbertoni    2004/12/27 18:27:40

  Modified:    c/src/xalanc/XSLT Stylesheet.cpp
  Log:
  Fixes for GCC 3.4.
  
  Revision  Changes    Path
  1.18      +3 -1      xml-xalan/c/src/xalanc/XSLT/Stylesheet.cpp
  
  Index: Stylesheet.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/XSLT/Stylesheet.cpp,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- Stylesheet.cpp	15 Nov 2004 07:53:35 -0000	1.17
  +++ Stylesheet.cpp	28 Dec 2004 02:27:40 -0000	1.18
  @@ -393,7 +393,9 @@
   				substring(aname, prefix, DOMServices::s_XMLNamespaceWithSeparatorLength);
   			}
   
  -			namespaces.push_back(NameSpace(prefix, XalanDOMString(value, getMemoryManager()), getMemoryManager()));
  +            const NameSpace     newNS(prefix, XalanDOMString(value, getMemoryManager()), getMemoryManager());
  +
  +			namespaces.push_back(newNS);
   		}
   	}
   
  
  
  

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