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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to