Skip to content
Snippets Groups Projects
Commit 7319996e authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Do not return a reference to a local variable in CoordsGridFunction

parent 1afde968
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ namespace AMDiS
struct Derivative
{
template <class T, int N>
Dune::DiagonalMatrix<T, N> const& operator()(Dune::FieldVector<T, N> const& /*x*/) const
Dune::DiagonalMatrix<T, N> operator()(Dune::FieldVector<T, N> const& /*x*/) const
{
return Dune::DiagonalMatrix<T,N>{T(1)};
}
......
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