dbertoni 00/05/31 09:58:12
Modified: c/src/DOMSupport NamespaceResolver.cpp
Log:
Removed extraneous const.
Revision Changes Path
1.8 +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.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- NamespaceResolver.cpp 2000/05/26 18:45:19 1.7
+++ NamespaceResolver.cpp 2000/05/31 16:58:11 1.8
@@ -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 const XalanNode::NodeType ntype =
theLocalNode->getNodeType();
+ 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.