Skip to content
Snippets Groups Projects
Commit a9418dce authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[disc][projection] add missing dune functions include

parent 23b824f6
No related branches found
No related tags found
1 merge request!3417[disc][projection] add missing dune functions include
......@@ -23,6 +23,7 @@
*/
#ifndef DUMUX_DISCRETIZATION_L2_PROJECTION_HH
#define DUMUX_DISCRETIZATION_L2_PROJECTION_HH
#if HAVE_DUNE_FUNCTIONS
#include <vector>
......@@ -31,6 +32,7 @@
#include <dune/geometry/quadraturerules.hh>
#include <dune/istl/bcrsmatrix.hh>
#include <dune/istl/bvector.hh>
#include <dune/functions/gridfunctions/gridviewfunction.hh>
#include <dumux/linear/seqsolverbackend.hh>
#include <dumux/assembly/jacobianpattern.hh>
......@@ -62,7 +64,7 @@ public:
{}
template <class Function>
CoefficientVector project(Function&& function, const Params& params = Params{})
CoefficientVector project(Function&& function, const Params& params = Params{}) const
{
CoefficientVector projection, rhs;
projection.resize(feBasis_.size());
......@@ -162,4 +164,5 @@ private:
} // end namespace Dumux
#endif // HAVE_DUNE_FUNCTIONS
#endif
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