dbertoni    2002/11/14 09:54:58

  Modified:    c/src/XSLT NamespacesHandler.cpp
  Log:
  Fixed use of typedef.
  
  Revision  Changes    Path
  1.29      +4 -2      xml-xalan/c/src/XSLT/NamespacesHandler.cpp
  
  Index: NamespacesHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/NamespacesHandler.cpp,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- NamespacesHandler.cpp     14 Nov 2002 01:56:57 -0000      1.28
  +++ NamespacesHandler.cpp     14 Nov 2002 17:54:58 -0000      1.29
  @@ -218,7 +218,7 @@
        if (theEntry == 0)
        {
                theVector.push_back(
  -                     VectorType::value_type(
  +                     value_type(
                                theConstructionContext.getPooledString(thePrefix),
                                theConstructionContext.getPooledString(theURI)));
   
  @@ -247,7 +247,9 @@
                        const VectorType&               theVector,
                        const XalanDOMString&   thePrefix)
   {
  -     const typename VectorType::value_type* const    theEntry =
  +     typedef typename VectorType::value_type         value_type;
  +
  +     const value_type* const         theEntry =
                findByPrefix(theVector, thePrefix);
   
        if (theEntry == 0)
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to