From: Daniel Arndt Date: Thu, 2 Jul 2020 13:49:28 +0000 (-0400) Subject: Fix default mapping parameter in VectorTools boundary functions X-Git-Tag: v9.3.0-rc1~1335^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10647%2Fhead;p=dealii.git Fix default mapping parameter in VectorTools boundary functions --- 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