COIN-OR::LEMON - Graph Library

Changeset 515:a7eeb8af6b34 in lemon-0.x for src/include/skeletons/graph.h


Ignore:
Timestamp:
05/03/04 19:06:38 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@675
Message:

To be compatible with gcc-3.4.0 ...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/include/skeletons/graph.h

    r503 r515  
    8888      NodeIt(Invalid) {}
    8989      /// Sets the iterator to the first node of \c G.
    90       NodeIt(const GraphSkeleton &G) {}
     90      NodeIt(const GraphSkeleton &) {}
    9191      /// @warning The default constructor sets the iterator
    9292      /// to an undefined value.
     
    135135      ///@param n the node
    136136      ///@param G the graph
    137       OutEdgeIt(const GraphSkeleton & G, Node n) {}
     137      OutEdgeIt(const GraphSkeleton &, Node) {}
    138138    };
    139139
     
    286286      typedef Node KeyType;
    287287
    288       NodeMap(const GraphSkeleton &G) {}
    289       NodeMap(const GraphSkeleton &G, T t) {}
    290 
    291       template<typename TT> NodeMap(const NodeMap<TT> &m) {}
     288      NodeMap(const GraphSkeleton &) {}
     289      NodeMap(const GraphSkeleton &, T) {}
     290
     291      template<typename TT> NodeMap(const NodeMap<TT> &) {}
    292292
    293293      /// Sets the value of a node.
     
    324324      typedef Edge KeyType;
    325325
    326       EdgeMap(const GraphSkeleton &G) {}
    327       EdgeMap(const GraphSkeleton &G, T t) {}
     326      EdgeMap(const GraphSkeleton &) {}
     327      EdgeMap(const GraphSkeleton &, T ) {}
    328328   
    329329      ///\todo It can copy between different types.
    330330      ///
    331       template<typename TT> EdgeMap(const EdgeMap<TT> &m) {}
     331      template<typename TT> EdgeMap(const EdgeMap<TT> &) {}
    332332
    333333      void set(Edge, T) {}
Note: See TracChangeset for help on using the changeset viewer.