[Lemon-commits] [lemon_svn] marci: r300 - hugo/trunk/src/work
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:38:36 CET 2006
Author: marci
Date: Fri Mar 19 16:41:58 2004
New Revision: 300
Modified:
hugo/trunk/src/work/list_graph.h
Log:
warnings
Modified: hugo/trunk/src/work/list_graph.h
==============================================================================
--- hugo/trunk/src/work/list_graph.h (original)
+++ hugo/trunk/src/work/list_graph.h Fri Mar 19 16:41:58 2004
@@ -428,7 +428,7 @@
friend class ListGraph;
//protected:
public: //for alpar
- EdgeIt(const ListGraph& G) {
+ EdgeIt(const ListGraph&) {
node_item* v=G._first_node;
if (v) edge=v->_first_out_edge; else edge=0;
while (v && !edge) { v=v->_next_node; if (v) edge=v->_first_out_edge; }
@@ -455,7 +455,7 @@
public:
OutEdgeIt() : Edge()/*, v(0)*/ { }
OutEdgeIt(const Invalid& i) : Edge(i) { }
- OutEdgeIt(const ListGraph& G, Node _v) /*: v(_v.node)*/ { edge=_v.node->_first_out_edge; }
+ OutEdgeIt(const ListGraph&, Node _v) /*: v(_v.node)*/ { edge=_v.node->_first_out_edge; }
protected:
OutEdgeIt& operator++() { edge=edge->_next_out; return *this; }
protected:
@@ -472,7 +472,7 @@
public:
InEdgeIt() : Edge()/*, v(0)*/ { }
InEdgeIt(const Invalid& i) : Edge(i) { }
- InEdgeIt(const ListGraph& G, Node _v) /*: v(_v.node)*/ { edge=_v.node->_first_in_edge; }
+ InEdgeIt(const ListGraph&, Node _v) /*: v(_v.node)*/ { edge=_v.node->_first_in_edge; }
protected:
InEdgeIt& operator++() { edge=edge->_next_in; return *this; }
protected:
@@ -494,7 +494,7 @@
public:
SymEdgeIt() : Edge() /*, v(0)*/ { }
SymEdgeIt(const Invalid& i) : Edge(i) { }
- SymEdgeIt(const ListGraph& G, Node _v) /*: v(_v.node)*/ {
+ SymEdgeIt(const ListGraph&, Node _v) /*: v(_v.node)*/ {
out_or_in=1;
edge=_v.node->_first_out_edge;
if (!edge) { edge=_v.node->_first_in_edge; out_or_in=0; }
More information about the Lemon-commits
mailing list