COIN-OR::LEMON - Graph Library

Changeset 1367:a490662291b9 in lemon-0.x for src/lemon/dfs.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/dfs.h

    r1359 r1367  
    8787    ///\param G is the graph, to which
    8888    ///we would like to define the \ref ProcessedMap
    89     static ProcessedMap *createProcessedMap(const GR &G)
     89    static ProcessedMap *createProcessedMap(const GR &)
    9090    {
    9191      return new ProcessedMap();
     
    777777    ///\param G is the graph, to which we would like to define the PredMap.
    778778    ///\todo The graph alone may be insufficient to initialize
    779     static PredMap *createPredMap(const GR &G)
     779    static PredMap *createPredMap(const GR &)
    780780    {
    781781      return new PredMap();
     
    810810    ///\param G is the graph, to which
    811811    ///we would like to define the \ref ProcessedMap
    812     static ProcessedMap *createProcessedMap(const GR &G)
     812    static ProcessedMap *createProcessedMap(const GR &)
    813813    {
    814814      return new ProcessedMap();
     
    839839    ///This function instantiates a \ref DistMap.
    840840    ///\param G is the graph, to which we would like to define the \ref DistMap
    841     static DistMap *createDistMap(const GR &G)
     841    static DistMap *createDistMap(const GR &)
    842842    {
    843843      return new DistMap();
     
    995995    struct DefPredMapBase : public Base {
    996996      typedef T PredMap;
    997       static PredMap *createPredMap(const Graph &G) { return 0; };
     997      static PredMap *createPredMap(const Graph &) { return 0; };
    998998      DefPredMapBase(const TR &b) : TR(b) {}
    999999    };
     
    10161016    struct DefReachedMapBase : public Base {
    10171017      typedef T ReachedMap;
    1018       static ReachedMap *createReachedMap(const Graph &G) { return 0; };
     1018      static ReachedMap *createReachedMap(const Graph &) { return 0; };
    10191019      DefReachedMapBase(const TR &b) : TR(b) {}
    10201020    };
     
    10371037    struct DefProcessedMapBase : public Base {
    10381038      typedef T ProcessedMap;
    1039       static ProcessedMap *createProcessedMap(const Graph &G) { return 0; };
     1039      static ProcessedMap *createProcessedMap(const Graph &) { return 0; };
    10401040      DefProcessedMapBase(const TR &b) : TR(b) {}
    10411041    };
     
    10781078    struct DefDistMapBase : public Base {
    10791079      typedef T DistMap;
    1080       static DistMap *createDistMap(const Graph &G) { return 0; };
     1080      static DistMap *createDistMap(const Graph &) { return 0; };
    10811081      DefDistMapBase(const TR &b) : TR(b) {}
    10821082    };
Note: See TracChangeset for help on using the changeset viewer.