[Lemon-commits] [lemon_svn] alpar: r976 - hugo/trunk/src/hugo
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:42:31 CET 2006
Author: alpar
Date: Wed Jul 21 19:39:49 2004
New Revision: 976
Modified:
hugo/trunk/src/hugo/full_graph.h
hugo/trunk/src/hugo/list_graph.h
hugo/trunk/src/hugo/smart_graph.h
Log:
For the sake of icc.
Modified: hugo/trunk/src/hugo/full_graph.h
==============================================================================
--- hugo/trunk/src/hugo/full_graph.h (original)
+++ hugo/trunk/src/hugo/full_graph.h Wed Jul 21 19:39:49 2004
@@ -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:
Modified: hugo/trunk/src/hugo/list_graph.h
==============================================================================
--- hugo/trunk/src/hugo/list_graph.h (original)
+++ hugo/trunk/src/hugo/list_graph.h Wed Jul 21 19:39:49 2004
@@ -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.
Modified: hugo/trunk/src/hugo/smart_graph.h
==============================================================================
--- hugo/trunk/src/hugo/smart_graph.h (original)
+++ hugo/trunk/src/hugo/smart_graph.h Wed Jul 21 19:39:49 2004
@@ -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.
More information about the Lemon-commits
mailing list