COIN-OR::LEMON - Graph Library

Changeset 2510:bb523a4758f7 in lemon-0.x for lemon/graph_utils.h


Ignore:
Timestamp:
11/14/07 16:36:37 (16 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3375
Message:

removing semicolon ftom the end of GRAPH_TYPEDEFS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_utils.h

    r2485 r2510  
    5050  ///\note If \c G it a template parameter, it should be used in this way.
    5151  ///\code
    52   ///  GRAPH_TYPEDEFS(typename G)
     52  ///  GRAPH_TYPEDEFS(typename G);
    5353  ///\endcode
    5454  ///
     
    6161    typedef Graph::   EdgeIt    EdgeIt;                 \
    6262    typedef Graph:: InEdgeIt  InEdgeIt;                 \
    63     typedef Graph::OutEdgeIt OutEdgeIt;                 
     63    typedef Graph::OutEdgeIt OutEdgeIt
    6464
    6565  ///Creates convenience typedefs for the undirected graph types and iterators
     
    7171  ///\note If \c G it a template parameter, it should be used in this way.
    7272  ///\code
    73   ///  UGRAPH_TYPEDEFS(typename G)
     73  ///  UGRAPH_TYPEDEFS(typename G);
    7474  ///\endcode
    7575  ///
     
    7777  ///template typedefs in C++.
    7878#define UGRAPH_TYPEDEFS(Graph)                          \
    79   GRAPH_TYPEDEFS(Graph)                                         \
     79  GRAPH_TYPEDEFS(Graph);                                \
    8080    typedef Graph:: UEdge   UEdge;                      \
    8181    typedef Graph:: UEdgeIt UEdgeIt;                    \
    82     typedef Graph:: IncEdgeIt   IncEdgeIt;                     
     82    typedef Graph:: IncEdgeIt   IncEdgeIt
    8383
    8484  ///\brief Creates convenience typedefs for the bipartite undirected graph
     
    9191  ///\note If \c G it a template parameter, it should be used in this way.
    9292  ///\code
    93   ///  BPUGRAPH_TYPEDEFS(typename G)
     93  ///  BPUGRAPH_TYPEDEFS(typename G);
    9494  ///\endcode
    9595  ///
     
    9797  ///template typedefs in C++.
    9898#define BPUGRAPH_TYPEDEFS(Graph)            \
    99   UGRAPH_TYPEDEFS(Graph)                    \
     99  UGRAPH_TYPEDEFS(Graph);                   \
    100100    typedef Graph::ANode ANode;             \
    101101    typedef Graph::BNode BNode;             \
    102102    typedef Graph::ANodeIt ANodeIt;         \
    103     typedef Graph::BNodeIt BNodeIt;
     103    typedef Graph::BNodeIt BNodeIt
    104104
    105105  /// \brief Function to count the items in the graph.
     
    24932493  {
    24942494  public:
    2495     GRAPH_TYPEDEFS(typename G)
     2495    GRAPH_TYPEDEFS(typename G);
    24962496    typedef G Graph;
    24972497
     
    26092609    using EdgeLookUp<G>::_head;
    26102610
    2611     GRAPH_TYPEDEFS(typename G)
     2611    GRAPH_TYPEDEFS(typename G);
    26122612    typedef G Graph;
    26132613   
Note: See TracChangeset for help on using the changeset viewer.