Skip to content

Commit d35588f

Browse files
committed
fix order of type parameters
1 parent e8e717b commit d35588f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/solvers/dgsem_unstructured/sort_boundary_conditions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ during the call to `calc_boundary_flux!`. The original `NamedTuple` of the bound
1414
set by the user in the elixir file is also stored for printing.
1515
"""
1616
mutable struct UnstructuredSortedBoundaryTypes{N, BCs <: NTuple{N, Any},
17-
BoundaryConditions <: NamedTuple,
18-
Vec <: AbstractVector{<:Integer}}
17+
Vec <: AbstractVector{<:Integer},
18+
BoundaryConditions <: NamedTuple,}
1919
const boundary_condition_types::BCs # specific boundary condition type(s), e.g. BoundaryConditionDirichlet
2020
boundary_indices::NTuple{N, Vec} # integer vectors containing global boundary indices
2121
const boundary_conditions::BoundaryConditions # boundary conditions as set by the user in the elixir file

0 commit comments

Comments
 (0)