Skip to content
Snippets Groups Projects
Commit 016c46ff authored by Robert Kloefkorn's avatar Robert Kloefkorn
Browse files

remove const before return value.

parent 8ffd7ab1
No related branches found
No related tags found
No related merge requests found
...@@ -84,8 +84,8 @@ namespace Dune ...@@ -84,8 +84,8 @@ namespace Dune
rows_[ rows ] = count ; rows_[ rows ] = count ;
} }
const int N () const { return rows; } int N () const { return rows; }
const int M () const { return cols; } int M () const { return cols; }
template <class X, class Y> template <class X, class Y>
void mv ( const X& x, Y& y ) const void mv ( const X& x, Y& y ) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment