COIN-OR::LEMON - Graph Library

Changeset 1367:a490662291b9 in lemon-0.x for src/lemon/bfs.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/bfs.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();
     
    770770    ///\param G is the graph, to which we would like to define the PredMap.
    771771    ///\todo The graph alone may be insufficient to initialize
    772     static PredMap *createPredMap(const GR &G)
     772    static PredMap *createPredMap(const GR &)
    773773    {
    774774      return new PredMap();
     
    803803    ///\param G is the graph, to which
    804804    ///we would like to define the \ref ProcessedMap
    805     static ProcessedMap *createProcessedMap(const GR &G)
     805    static ProcessedMap *createProcessedMap(const GR &)
    806806    {
    807807      return new ProcessedMap();
     
    832832    ///This function instantiates a \ref DistMap.
    833833    ///\param G is the graph, to which we would like to define the \ref DistMap
    834     static DistMap *createDistMap(const GR &G)
     834    static DistMap *createDistMap(const GR &)
    835835    {
    836836      return new DistMap();
     
    989989    struct DefPredMapBase : public Base {
    990990      typedef T PredMap;
    991       static PredMap *createPredMap(const Graph &G) { return 0; };
     991      static PredMap *createPredMap(const Graph &) { return 0; };
    992992      DefPredMapBase(const TR &b) : TR(b) {}
    993993    };
     
    10101010    struct DefReachedMapBase : public Base {
    10111011      typedef T ReachedMap;
    1012       static ReachedMap *createReachedMap(const Graph &G) { return 0; };
     1012      static ReachedMap *createReachedMap(const Graph &) { return 0; };
    10131013      DefReachedMapBase(const TR &b) : TR(b) {}
    10141014    };
     
    10311031    struct DefProcessedMapBase : public Base {
    10321032      typedef T ProcessedMap;
    1033       static ProcessedMap *createProcessedMap(const Graph &G) { return 0; };
     1033      static ProcessedMap *createProcessedMap(const Graph &) { return 0; };
    10341034      DefProcessedMapBase(const TR &b) : TR(b) {}
    10351035    };
     
    10721072    struct DefDistMapBase : public Base {
    10731073      typedef T DistMap;
    1074       static DistMap *createDistMap(const Graph &G) { return 0; };
     1074      static DistMap *createDistMap(const Graph &) { return 0; };
    10751075      DefDistMapBase(const TR &b) : TR(b) {}
    10761076    };
Note: See TracChangeset for help on using the changeset viewer.