Skip to content
Snippets Groups Projects
Commit e7ae45b5 authored by lh1887's avatar lh1887
Browse files

Fixed constructor of DuneFunctionsL2FunctionalAssembler

parent 63af7820
No related branches found
No related tags found
1 merge request!96Fixed constructor of DuneFunctionsL2FunctionalAssembler
Pipeline #39787 passed
......@@ -82,9 +82,9 @@ class DuneFunctionsL2FunctionalAssembler :
* \param f The L2 function
*/
template<class FF, disableCopyMove<DuneFunctionsL2FunctionalAssembler, FF> = 0 >
DuneFunctionsL2FunctionalAssembler(F&& f) :
DuneFunctionsL2FunctionalAssembler(FF&& f) :
f_(Dune::wrap_or_move<const Function>(std::forward<FF>(f))),
localF_(localFunction(f_)),
localF_(localFunction(*f_)),
functionQuadKey_(dim, 0)
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment