[Lemon-commits] [lemon_svn] marci: r1363 - hugo/trunk/src/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:44:51 CET 2006
Author: marci
Date: Wed Nov 10 13:51:30 2004
New Revision: 1363
Modified:
hugo/trunk/src/lemon/list_graph.h
Log:
for better compatibility with gcc-3.4
Modified: hugo/trunk/src/lemon/list_graph.h
==============================================================================
--- hugo/trunk/src/lemon/list_graph.h (original)
+++ hugo/trunk/src/lemon/list_graph.h Wed Nov 10 13:51:30 2004
@@ -65,7 +65,7 @@
typedef ListGraphBase Graph;
class Node {
- friend class Graph;
+ friend class ListGraphBase;
protected:
int id;
@@ -80,7 +80,7 @@
};
class Edge {
- friend class Graph;
+ friend class ListGraphBase;
protected:
int id;
More information about the Lemon-commits
mailing list