grid_ugraph.h: fixed #18 (global functions inlined)
authorklao
Tue, 29 Jan 2008 03:39:05 +0000
changeset 255975dd6d724f26
parent 2558 e70b52a8cd57
child 2560 635e7985be46
grid_ugraph.h: fixed #18 (global functions inlined)
lemon/grid_ugraph.h
     1.1 --- a/lemon/grid_ugraph.h	Mon Jan 28 11:42:46 2008 +0000
     1.2 +++ b/lemon/grid_ugraph.h	Tue Jan 29 03:39:05 2008 +0000
     1.3 @@ -475,21 +475,21 @@
     1.4    /// \brief Index map of the grid graph
     1.5    ///
     1.6    /// Just returns an IndexMap for the grid graph.
     1.7 -  GridUGraph::IndexMap indexMap(const GridUGraph& graph) {
     1.8 +  inline GridUGraph::IndexMap indexMap(const GridUGraph& graph) {
     1.9      return GridUGraph::IndexMap(graph);
    1.10    }
    1.11  
    1.12    /// \brief Row map of the grid graph
    1.13    ///
    1.14    /// Just returns a RowMap for the grid graph.
    1.15 -  GridUGraph::RowMap rowMap(const GridUGraph& graph) {
    1.16 +  inline GridUGraph::RowMap rowMap(const GridUGraph& graph) {
    1.17      return GridUGraph::RowMap(graph);
    1.18    }
    1.19  
    1.20    /// \brief Column map of the grid graph
    1.21    ///
    1.22    /// Just returns a ColMap for the grid graph.
    1.23 -  GridUGraph::ColMap colMap(const GridUGraph& graph) {
    1.24 +  inline GridUGraph::ColMap colMap(const GridUGraph& graph) {
    1.25      return GridUGraph::ColMap(graph);
    1.26    }
    1.27  }