From 926d11e26536747575200affb3711985bc3a7b39 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 2 Jul 2020 09:49:28 -0400 Subject: [PATCH] Fix default mapping parameter in VectorTools boundary functions --- include/deal.II/numerics/vector_tools_boundary.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/deal.II/numerics/vector_tools_boundary.h b/include/deal.II/numerics/vector_tools_boundary.h index 271632d42e..9331e7113b 100644 --- a/include/deal.II/numerics/vector_tools_boundary.h +++ b/include/deal.II/numerics/vector_tools_boundary.h @@ -553,7 +553,7 @@ namespace VectorTools const Function &boundary_function, const types::boundary_id boundary_component, AffineConstraints & constraints, - const Mapping & mapping = StaticMappingQ1::mapping); + const Mapping & mapping); /** * Same as above for the hp-namespace. @@ -697,7 +697,8 @@ namespace VectorTools const Function & boundary_function, const types::boundary_id boundary_component, AffineConstraints & constraints, - const hp::MappingCollection &mapping_collection); + const hp::MappingCollection &mapping_collection = + hp::StaticMappingQ1::mapping_collection); /** @@ -772,7 +773,8 @@ namespace VectorTools const Function & boundary_function, const types::boundary_id boundary_component, AffineConstraints & constraints, - const hp::MappingCollection &mapping_collection); + const hp::MappingCollection &mapping_collection = + hp::StaticMappingQ1::mapping_collection); // @} } // namespace VectorTools -- 2.39.5