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

allow lambda functiosn in Dirichlet BC

parent aeaa15ee
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,7 @@ namespace AMDiS {
}
#if __cplusplus > 199711L
// c++11 std::function of lambda-functions
void DirichletBC<_value_by_function>::fillBoundaryCondition(
DOFVectorBase<double>* vector,
......@@ -91,7 +92,7 @@ namespace AMDiS {
(*vector)[dofIndices[i]] = value;
}
}
#endif
void DirichletBC<_value_by_abstractfunction>::fillBoundaryCondition(
DOFVectorBase<double>* vector,
......
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