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/05/26 20:45:20 UTC

cvs commit: xml-xalan/c/src/DOMSupport NamespaceResolver.cpp

dbertoni    00/05/26 11:45:20

  Modified:    c/src/DOMSupport NamespaceResolver.cpp
  Log:
  Change variable from int to enum for easier debugging.
  
  Revision  Changes    Path
  1.7       +5 -5      xml-xalan/c/src/DOMSupport/NamespaceResolver.cpp
  
  Index: NamespaceResolver.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/DOMSupport/NamespaceResolver.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- NamespaceResolver.cpp	2000/04/18 15:30:32	1.6
  +++ NamespaceResolver.cpp	2000/05/26 18:45:19	1.7
  @@ -128,15 +128,15 @@
   	using std::vector;
   #endif
   
  -	const XalanNode*				theLocalNode = &theNode;
  +	const XalanNode*					theLocalNode = &theNode;
   
  -	bool							hasProcessedNS;
  +	bool								hasProcessedNS;
       
  -	NSInfo							nsInfo;
  +	NSInfo								nsInfo;
   
  -    const int						ntype = theLocalNode->getNodeType();
  +    const const XalanNode::NodeType		ntype = theLocalNode->getNodeType();
   
  -	NSInfoMapType::const_iterator	theIterator = m_NSInfos.end();
  +	NSInfoMapType::const_iterator		theIterator = m_NSInfos.end();
   
   	// Find the node in the map of cached nodes, if it's not an
   	// attribute node.