Skip to content

Commit

Permalink
remove unused type variable Flux in DGMulti flux differencing (#1233)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha authored Oct 7, 2022
1 parent 2261735 commit 8dd52e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/solvers/dgmulti/flux_differencing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ end
@inline function local_flux_differencing!(fluxdiff_local, u_local, element_index,
has_nonconservative_terms::Val{false}, volume_integral,
has_sparse_operators::Val{false}, mesh,
equations, dg, cache) where {Flux}
equations, dg, cache)
@unpack volume_flux = volume_integral
for dim in eachdim(mesh)
Qi_skew = build_lazy_physical_derivative(element_index, dim, mesh, dg, cache)
Expand All @@ -427,7 +427,7 @@ end
@inline function local_flux_differencing!(fluxdiff_local, u_local, element_index,
has_nonconservative_terms::Val{true}, volume_integral,
has_sparse_operators::Val{false}, mesh,
equations, dg, cache) where {Flux}
equations, dg, cache)
flux_conservative, flux_nonconservative = volume_integral.volume_flux
for dim in eachdim(mesh)
Qi_skew = build_lazy_physical_derivative(element_index, dim, mesh, dg, cache)
Expand Down

0 comments on commit 8dd52e3

Please sign in to comment.