[Lemon-commits] [lemon_svn] alpar: r1180 - hugo/trunk/src/hugo
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:43:42 CET 2006
Author: alpar
Date: Thu Sep 16 22:55:01 2004
New Revision: 1180
Modified:
hugo/trunk/src/hugo/graph_wrapper.h
Log:
Go back to -r1169 in order to be able to compile minlengthpath_test.cc
Modified: hugo/trunk/src/hugo/graph_wrapper.h
==============================================================================
--- hugo/trunk/src/hugo/graph_wrapper.h (original)
+++ hugo/trunk/src/hugo/graph_wrapper.h Thu Sep 16 22:55:01 2004
@@ -229,9 +229,9 @@
public:
NodeMap(const GraphWrapper<Graph>& gw) : Parent(*(gw.graph)) { }
NodeMap(const GraphWrapper<Graph>& gw, T a) : Parent(*(gw.graph), a) { }
- NodeMap(const NodeMap<T>& map) : Parent(map) { }
- template<typename Map>
- NodeMap(const Map& map) : Parent(map) { }
+// NodeMap(const NodeMap<T>& map) : Parent(map) { }
+// template<typename Map>
+// NodeMap(const Map& map) : Parent(map) { }
};
template<typename T> class EdgeMap : public Graph::template EdgeMap<T> {
@@ -239,9 +239,9 @@
public:
EdgeMap(const GraphWrapper<Graph>& gw) : Parent(*(gw.graph)) { }
EdgeMap(const GraphWrapper<Graph>& gw, T a) : Parent(*(gw.graph), a) { }
- EdgeMap(const EdgeMap<T>& map) : Parent(map) { }
- template<typename Map>
- EdgeMap(const Map& map) : Parent(map) { }
+// EdgeMap(const EdgeMap<T>& map) : Parent(map) { }
+// template<typename Map>
+// EdgeMap(const Map& map) : Parent(map) { }
};
};
More information about the Lemon-commits
mailing list