Skip to content

Commit 43eb2a5

Browse files
committed
Add missing arg in copy constructor
1 parent f93df1f commit 43eb2a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/finiteelements.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ struct FESpace{Tv, Ti, FEType <: AbstractFiniteElement, AT <: AssemblyType}
8181
end
8282

8383
function Base.copy(FES::FESpace{Tv, Ti, FEType, AT}) where {Tv, Ti, FEType, AT}
84-
return FESpace{Tv, Ti, FEType, AT}(deepcopy(FES.name), FES.broken, FES.ndofs, FES.coffset, FES.xgrid, FES.dofgrid, FES.dofmaps)
84+
return FESpace{Tv, Ti, FEType, AT}(deepcopy(FES.name), FES.broken, FES.ndofs, FES.coffset, FES.xgrid, FES.dofgrid, FES.dofmaps, FES.interpolators)
8585
end
8686

8787
"""

0 commit comments

Comments
 (0)