dbertoni    01/06/21 15:23:47

  Modified:    c/src/XSLT XalanTemplate.cpp
  Log:
  Fixed some compilation errors due to typedef changes.
  
  Revision  Changes    Path
  1.23      +8 -6      xml-xalan/c/src/XSLT/XalanTemplate.cpp
  
  Index: XalanTemplate.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XalanTemplate.cpp,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- XalanTemplate.cpp 2001/06/06 21:54:08     1.22
  +++ XalanTemplate.cpp 2001/06/21 22:23:46     1.23
  @@ -91,7 +91,7 @@
   #include <string>
   #include <stl/_string.c>
   #include <stl/_string_fwd.c>
  -
  +#endif
   
   
   #include <XalanDOM/XalanNode.hpp>
  @@ -200,7 +200,6 @@
   static set<const XalanNode*,less<const XalanNode*> > theXalanNodeSet;
   static XPathExpression::OpCodeLengthMapType theOpCodeLengthMapType;
   static XPathExpression::OpCodeMapValueType theOpCodeMapValueType;
  -static XPathExpression::NodeTestSetType theNodeTestSetType;
   static XPathExecutionContext::XObjectArgVectorType theVector;
   static XPathProcessorImpl::NodeTypesMapType theNodeTypesMapType;
   static Stylesheet::PatternTableListType      thePatternTableList;
  @@ -328,11 +327,12 @@
        }
   
        {
  -             Stylesheet::AttributeSetMapType theMap;
  +             Stylesheet::AttributeSetVectorType      theVector;
                
  -             for_each(theMap.begin(),
  -                      theMap.end(),
  -                      DeleteFunctor<ElemAttributeSet>());
  +             for_each(
  +                     theVector.begin(),
  +                     theVector.end(),
  +                     DeleteFunctor<ElemAttributeSet>());
        }
   
        {
  @@ -594,5 +594,7 @@
   
   __node_alloc<0,0> alloc1;
   __node_alloc<1,0> alloc2;
  +
  +
   
   #endif
  
  
  

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

Reply via email to