# HG changeset patch # User ladanyi # Date 1118353788 0 # Node ID 638124c0ef08f02cb71f50992dcf588af72ea351 # Parent 65f8b0ee63060d9bad77b650b49272eeae6a932b gcc 3.4 compatibility fixes diff -r 65f8b0ee6306 -r 638124c0ef08 lemon/graph_utils.h --- a/lemon/graph_utils.h Thu Jun 09 16:26:52 2005 +0000 +++ b/lemon/graph_utils.h Thu Jun 09 21:49:48 2005 +0000 @@ -878,7 +878,7 @@ /// /// Constructor for creating in-degree map. InDegMap(const _Graph& _graph) : - _Graph::NodeMap(_graph,0), + _Graph::template NodeMap(_graph,0), graph(_graph) { AlterationNotifier @@ -944,7 +944,7 @@ /// /// Constructor for creating out-degree map. OutDegMap(const _Graph& _graph) : - _Graph::NodeMap(_graph,0), + _Graph::template NodeMap(_graph,0), graph(_graph) { AlterationNotifier