COIN-OR::LEMON - Graph Library

Changeset 2540:8ab1d3d7dea7 in lemon-0.x for lemon


Ignore:
Timestamp:
12/11/07 18:42:49 (16 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3417
Message:

Avoiding warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_utils.h

    r2539 r2540  
    25262526  protected:
    25272527
    2528     class AutoNodeMap : public DefaultMap<Graph, Node, Edge> {
     2528    class AutoNodeMap : public DefaultMap<G, Node, Edge> {
    25292529    public:
    25302530
    2531       typedef DefaultMap<Graph, Node, Edge> Parent;
    2532 
    2533       AutoNodeMap(const Graph& graph) : Parent(graph, INVALID) {}
     2531      typedef DefaultMap<G, Node, Edge> Parent;
     2532
     2533      AutoNodeMap(const G& graph) : Parent(graph, INVALID) {}
    25342534     
    25352535      virtual void add(const Node& node) {
Note: See TracChangeset for help on using the changeset viewer.