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...@locus.apache.org on 2000/08/07 18:08:25 UTC

cvs commit: xml-xalan/c/src/DOMSupport NSInfo.hpp

dbertoni    00/08/07 09:08:24

  Modified:    c/src/DOMSupport NSInfo.hpp
  Log:
  Fixed problem with wrong == operators being called.
  
  Revision  Changes    Path
  1.4       +3 -3      xml-xalan/c/src/DOMSupport/NSInfo.hpp
  
  Index: NSInfo.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/DOMSupport/NSInfo.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NSInfo.hpp	2000/04/11 14:30:44	1.3
  +++ NSInfo.hpp	2000/08/07 16:08:23	1.4
  @@ -141,9 +141,9 @@
   	operator==(const NSInfo&	theRHS) const
   	{
   		return equals(m_namespace, theRHS.m_namespace) &&
  -			   equals(m_hasXMLNSAttrs, theRHS.m_hasXMLNSAttrs) &&
  -			   equals(m_hasProcessedNS, theRHS.m_hasProcessedNS) &&
  -			   equals(m_ancestorHasXMLNSAttrs, theRHS.m_ancestorHasXMLNSAttrs);
  +			   m_hasXMLNSAttrs == theRHS.m_hasXMLNSAttrs &&
  +			   m_hasProcessedNS == theRHS.m_hasProcessedNS &&
  +			   m_ancestorHasXMLNSAttrs == theRHS.m_ancestorHasXMLNSAttrs;
   	}
   
   	XalanDOMString	m_namespace;