# HG changeset patch # User alpar # Date 1095368101 0 # Node ID 26c573ca6a996637f56aa27a6b2e093f513b96b3 # Parent fda944f15ca7803d4f01602b3a180e8846507602 Go back to -r1169 in order to be able to compile minlengthpath_test.cc diff -r fda944f15ca7 -r 26c573ca6a99 src/hugo/graph_wrapper.h --- a/src/hugo/graph_wrapper.h Thu Sep 16 19:51:28 2004 +0000 +++ b/src/hugo/graph_wrapper.h Thu Sep 16 20:55:01 2004 +0000 @@ -229,9 +229,9 @@ public: NodeMap(const GraphWrapper& gw) : Parent(*(gw.graph)) { } NodeMap(const GraphWrapper& gw, T a) : Parent(*(gw.graph), a) { } - NodeMap(const NodeMap& map) : Parent(map) { } - template - NodeMap(const Map& map) : Parent(map) { } +// NodeMap(const NodeMap& map) : Parent(map) { } +// template +// NodeMap(const Map& map) : Parent(map) { } }; template class EdgeMap : public Graph::template EdgeMap { @@ -239,9 +239,9 @@ public: EdgeMap(const GraphWrapper& gw) : Parent(*(gw.graph)) { } EdgeMap(const GraphWrapper& gw, T a) : Parent(*(gw.graph), a) { } - EdgeMap(const EdgeMap& map) : Parent(map) { } - template - EdgeMap(const Map& map) : Parent(map) { } +// EdgeMap(const EdgeMap& map) : Parent(map) { } +// template +// EdgeMap(const Map& map) : Parent(map) { } }; };