dbertoni    01/03/29 14:40:40

  Modified:    c/src/XPath XPathEvaluator.cpp
  Log:
  Make return explicit.
  
  Revision  Changes    Path
  1.2       +2 -2      xml-xalan/c/src/XPath/XPathEvaluator.cpp
  
  Index: XPathEvaluator.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathEvaluator.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XPathEvaluator.cpp        2001/03/29 22:14:50     1.1
  +++ XPathEvaluator.cpp        2001/03/29 22:40:40     1.2
  @@ -169,7 +169,7 @@
                        xpathString,
                        namespaceNode));
   
  -     return theResult->nodeset();
  +     return NodeRefList(theResult->nodeset());
   }
   
   
  @@ -188,7 +188,7 @@
                        xpathString,
                        prefixResolver));
   
  -     return theResult->nodeset();
  +     return NodeRefList(theResult->nodeset());
   }
   
   
  
  
  

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

Reply via email to