COIN-OR::LEMON - Graph Library

Changeset 978:175cf8c3a994 in lemon-0.x


Ignore:
Timestamp:
11/10/04 22:42:28 (19 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1366
Message:

"make check" pass under gcc-3.4.3

Location:
src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/alteration_observer_registry.h

    r962 r978  
    7575      typedef AlterationObserverRegistry Registry;
    7676
    77       friend class Registry;
     77      friend class AlterationObserverRegistry;
    7878
    7979      /// Default constructor.
  • src/lemon/array_map.h

    r946 r978  
    131131      }
    132132    }
     133
     134    using Parent::attach;
     135    using Parent::detach;
     136    using Parent::attached;
    133137
    134138    /** Assign operator to copy a map of the same map type.
  • src/lemon/undir_graph_extender.h

    r962 r978  
    3636
    3737    class Edge : public UndirEdge {
    38       friend class Graph;
     38      friend class UndirGraphExtender;
    3939
    4040    protected:
  • src/lemon/vector_map.h

    r971 r978  
    116116    }
    117117
     118    using Parent::attach;
     119    using Parent::detach;
     120    using Parent::attached;
    118121
    119122    /** Assign operator to copy a map of the same map type.
  • src/test/test_tools.h

    r946 r978  
    1818#define LEMON_TEST_TEST_TOOLS_H
    1919
     20#include <iostream>
     21#include <vector>
     22
     23#include <lemon/invalid.h>
     24
     25using namespace lemon;
     26
    2027//! \ingroup misc
    2128//! \file
    2229//! \brief Some utility to write test programs.
    2330
    24 
    25 #include<iostream>
    26 #include<vector>
    2731
    2832///If \c rc is fail, writes an error message end exit.
Note: See TracChangeset for help on using the changeset viewer.