COIN-OR::LEMON - Graph Library

Changeset 1367:a490662291b9 in lemon-0.x for src/lemon/dijkstra.h


Ignore:
Timestamp:
04/18/05 16:59:24 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1812
Message:

More steps toward gcc-3.4 compatibility

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/dijkstra.h

    r1366 r1367  
    788788    ///\param G is the graph, to which we would like to define the PredMap.
    789789    ///\todo The graph alone may be insufficient for the initialization
    790     static PredMap *createPredMap(const GR &G)
     790    static PredMap *createPredMap(const GR &)
    791791    {
    792792      return new PredMap();
     
    806806    ///\param G is the graph, to which
    807807    ///we would like to define the \ref ProcessedMap
    808     static ProcessedMap *createProcessedMap(const GR &G)
     808    static ProcessedMap *createProcessedMap(const GR &)
    809809    {
    810810      return new ProcessedMap();
     
    820820    ///This function instantiates a \ref DistMap.
    821821    ///\param G is the graph, to which we would like to define the \ref DistMap
    822     static DistMap *createDistMap(const GR &G)
     822    static DistMap *createDistMap(const GR &)
    823823    {
    824824      return new DistMap();
     
    975975    struct DefPredMapBase : public Base {
    976976      typedef T PredMap;
    977       static PredMap *createPredMap(const Graph &G) { return 0; };
     977      static PredMap *createPredMap(const Graph &) { return 0; };
    978978      DefPredMapBase(const TR &b) : TR(b) {}
    979979    };
     
    10161016    struct DefDistMapBase : public Base {
    10171017      typedef T DistMap;
    1018       static DistMap *createDistMap(const Graph &G) { return 0; };
     1018      static DistMap *createDistMap(const Graph &) { return 0; };
    10191019      DefDistMapBase(const TR &b) : TR(b) {}
    10201020    };
Note: See TracChangeset for help on using the changeset viewer.