Skip to content

Commit

Permalink
adhere to 1.6 parsing rules
Browse files Browse the repository at this point in the history
  • Loading branch information
krcools committed Oct 11, 2024
1 parent fca8afe commit bac6a5c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/bases/local/gwplocal.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
struct GWPCurlRefSpace{T,Degree} <: RefSpace{T} end

function numfunctions(x::GWPCurlRefSpace{<:Any,D},
dom::CompScienceMeshes.ReferenceSimplex{2}) where{D} (D+1)*(D+3) end
dom::CompScienceMeshes.ReferenceSimplex{2}) where {D}
(D+1)*(D+3)
end
function dimtype(x::GWPCurlRefSpace{<:Any,D},
dom::CompScienceMeshes.ReferenceSimplex{2}) where{D} Val{(D+1)*(D+3)} end
dom::CompScienceMeshes.ReferenceSimplex{2}) where {D}
Val{(D+1)*(D+3)}
end

function::GWPCurlRefSpace{T,Degree})(p) where {T,Degree}
dom = domain(chart(p))
Expand Down

0 comments on commit bac6a5c

Please sign in to comment.