# HG changeset patch # User klao # Date 1201577945 0 # Node ID 75dd6d724f26fb4f7c4e898cb0101039ff5a6678 # Parent e70b52a8cd573e674ff2dc70feb6c3cc4c6fab69 grid_ugraph.h: fixed #18 (global functions inlined) diff -r e70b52a8cd57 -r 75dd6d724f26 lemon/grid_ugraph.h --- a/lemon/grid_ugraph.h Mon Jan 28 11:42:46 2008 +0000 +++ b/lemon/grid_ugraph.h Tue Jan 29 03:39:05 2008 +0000 @@ -475,21 +475,21 @@ /// \brief Index map of the grid graph /// /// Just returns an IndexMap for the grid graph. - GridUGraph::IndexMap indexMap(const GridUGraph& graph) { + inline GridUGraph::IndexMap indexMap(const GridUGraph& graph) { return GridUGraph::IndexMap(graph); } /// \brief Row map of the grid graph /// /// Just returns a RowMap for the grid graph. - GridUGraph::RowMap rowMap(const GridUGraph& graph) { + inline GridUGraph::RowMap rowMap(const GridUGraph& graph) { return GridUGraph::RowMap(graph); } /// \brief Column map of the grid graph /// /// Just returns a ColMap for the grid graph. - GridUGraph::ColMap colMap(const GridUGraph& graph) { + inline GridUGraph::ColMap colMap(const GridUGraph& graph) { return GridUGraph::ColMap(graph); } }