Index: SegmentNodeList.cpp
===================================================================
RCS file: /home/cvs/postgis/geos/source/noding/SegmentNodeList.cpp,v
retrieving revision 1.24
diff -u -a -r1.24 SegmentNodeList.cpp
--- SegmentNodeList.cpp	28 Feb 2006 17:44:27 -0000	1.24
+++ SegmentNodeList.cpp	28 Feb 2006 21:56:53 -0000
@@ -292,9 +292,8 @@
 operator<< (ostream& os, const SegmentNodeList& nlist)
 {
 	os<<"NodeList:";
-	set<SegmentNode*,SegmentNodeLT>::iterator
-		it=nlist.nodeMap.begin(),
-		itEnd=nlist.nodeMap.end();
+	set<SegmentNode*,SegmentNodeLT>::const_iterator it = nlist.nodeMap.begin();
+	set<SegmentNode*,SegmentNodeLT>::const_iterator itEnd = nlist.nodeMap.end();
 
 	for(; it!=itEnd; it++)
 	{
