Skip to content

Commit

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

function numfunctions(x::GWPDivRefSpace{<: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::GWPDivRefSpace{<: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::GWPDivRefSpace{T,Degree})(p) where {T,Degree}
ψ = GWPCurlRefSpace{T,Degree}()
Expand Down

0 comments on commit 1f8fc18

Please sign in to comment.