diff --git a/src/FEValues/FacetValues.jl b/src/FEValues/FacetValues.jl index 43c9860cc3..485dab52b0 100644 --- a/src/FEValues/FacetValues.jl +++ b/src/FEValues/FacetValues.jl @@ -186,10 +186,10 @@ mutable struct BCValues{T} current_entity::Int end -BCValues(func_interpol::Interpolation, geom_interpol::Interpolation, boundary_type::Type{<:BoundaryIndex} = FaceIndex) = +BCValues(func_interpol::Interpolation, geom_interpol::Interpolation, boundary_type::Type{<:BoundaryIndex}) = BCValues(Float64, func_interpol, geom_interpol, boundary_type) -function BCValues(::Type{T}, func_interpol::Interpolation{refshape}, geom_interpol::Interpolation{refshape}, boundary_type::Type{<:BoundaryIndex} = FaceIndex) where {T, dim, refshape <: AbstractRefShape{dim}} +function BCValues(::Type{T}, func_interpol::Interpolation{refshape}, geom_interpol::Interpolation{refshape}, boundary_type::Type{<:BoundaryIndex}) where {T, dim, refshape <: AbstractRefShape{dim}} # set up quadrature rules for each boundary entity with dof-positions # (determined by func_interpol) as the quadrature points interpolation_coords = reference_coordinates(func_interpol)