diff -r fd991a24c857 -r a7eeb8af6b34 src/include/skeletons/graph.h --- a/src/include/skeletons/graph.h Mon May 03 14:43:49 2004 +0000 +++ b/src/include/skeletons/graph.h Mon May 03 17:06:38 2004 +0000 @@ -87,7 +87,7 @@ /// \sa Invalid for more details. NodeIt(Invalid) {} /// Sets the iterator to the first node of \c G. - NodeIt(const GraphSkeleton &G) {} + NodeIt(const GraphSkeleton &) {} /// @warning The default constructor sets the iterator /// to an undefined value. NodeIt(const NodeIt &n) : Node(n) {} @@ -134,7 +134,7 @@ /// node ///@param n the node ///@param G the graph - OutEdgeIt(const GraphSkeleton & G, Node n) {} + OutEdgeIt(const GraphSkeleton &, Node) {} }; /// This iterator goes trough the incoming edges of a node. @@ -285,10 +285,10 @@ typedef T ValueType; typedef Node KeyType; - NodeMap(const GraphSkeleton &G) {} - NodeMap(const GraphSkeleton &G, T t) {} + NodeMap(const GraphSkeleton &) {} + NodeMap(const GraphSkeleton &, T) {} - template NodeMap(const NodeMap &m) {} + template NodeMap(const NodeMap &) {} /// Sets the value of a node. @@ -323,12 +323,12 @@ typedef T ValueType; typedef Edge KeyType; - EdgeMap(const GraphSkeleton &G) {} - EdgeMap(const GraphSkeleton &G, T t) {} + EdgeMap(const GraphSkeleton &) {} + EdgeMap(const GraphSkeleton &, T ) {} ///\todo It can copy between different types. /// - template EdgeMap(const EdgeMap &m) {} + template EdgeMap(const EdgeMap &) {} void set(Edge, T) {} //T get(Edge) const {return *(T*)0;}