[Lemon-commits] klao: r3441 - lemon/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Tue Jan 29 04:39:07 CET 2008
Author: klao
Date: Tue Jan 29 04:39:05 2008
New Revision: 3441
Modified:
lemon/trunk/lemon/grid_ugraph.h
Log:
grid_ugraph.h: fixed #18 (global functions inlined)
Modified: lemon/trunk/lemon/grid_ugraph.h
==============================================================================
--- lemon/trunk/lemon/grid_ugraph.h (original)
+++ lemon/trunk/lemon/grid_ugraph.h Tue Jan 29 04:39:05 2008
@@ -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);
}
}
More information about the Lemon-commits
mailing list