# HG changeset patch # User alpar # Date 1090431589 0 # Node ID be8712e1fe07f74d0e2e7af04d7859b5bf899524 # Parent 1df9b762269b23612987ef1e4eabdd209d3c22f7 For the sake of icc. diff -r 1df9b762269b -r be8712e1fe07 src/hugo/full_graph.h --- a/src/hugo/full_graph.h Wed Jul 21 17:38:47 2004 +0000 +++ b/src/hugo/full_graph.h Wed Jul 21 17:39:49 2004 +0000 @@ -107,7 +107,7 @@ protected: int n; - friend int FullGraph::id(Node v) const; + friend int FullGraph::id(Node v); Node(int nn) {n=nn;} public: Node() {} @@ -135,7 +135,7 @@ friend class NodeIt; protected: int n; //NodeNum*head+tail; - friend int FullGraph::id(Edge e) const; + friend int FullGraph::id(Edge e); Edge(int nn) {n=nn;} public: diff -r 1df9b762269b -r be8712e1fe07 src/hugo/list_graph.h --- a/src/hugo/list_graph.h Wed Jul 21 17:38:47 2004 +0000 +++ b/src/hugo/list_graph.h Wed Jul 21 17:39:49 2004 +0000 @@ -316,7 +316,7 @@ protected: int n; - friend int ListGraph::id(Node v) const; + friend int ListGraph::id(Node v); Node(int nn) {n=nn;} public: Node() {} @@ -347,7 +347,7 @@ friend class NodeIt; protected: int n; - friend int ListGraph::id(Edge e) const; + friend int ListGraph::id(Edge e); public: /// An Edge with id \c n. diff -r 1df9b762269b -r be8712e1fe07 src/hugo/smart_graph.h --- a/src/hugo/smart_graph.h Wed Jul 21 17:38:47 2004 +0000 +++ b/src/hugo/smart_graph.h Wed Jul 21 17:39:49 2004 +0000 @@ -204,7 +204,7 @@ protected: int n; - friend int SmartGraph::id(Node v) const; + friend int SmartGraph::id(Node v); Node(int nn) {n=nn;} public: Node() {} @@ -235,7 +235,7 @@ friend class NodeIt; protected: int n; - friend int SmartGraph::id(Edge e) const; + friend int SmartGraph::id(Edge e); public: /// An Edge with id \c n.