Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
asalmgren committed Aug 10, 2024
1 parent b6a3aaf commit 5571ade
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Utils/hydro_bcs_K.H
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void SetExtrapVelBCsLo (int edge_dir, int i, int j, int k, int n,
// This is called in the extrapolation of normal velocity components only
//

Array<int> iv[3] iv[0] = i; iv[1] = j; iv[2] = k;
Array<int> iv[3]; iv[0] = i; iv[1] = j; iv[2] = k;
iv[edge_dir] = domlo-1;

Real s_ext = s(iv,n);
Expand Down Expand Up @@ -133,7 +133,7 @@ void SetExtrapVelBCsHi (int edge_dir, int i, int j, int k, int n,
// This is called in the extrapolation of normal velocity components only
//

Array<int> iv[3] iv[0] = i; iv[1] = j; iv[2] = k;
Array<int> iv[3]; iv[0] = i; iv[1] = j; iv[2] = k;
iv[edge_dir] = domhi+1;

Real s_ext = s(iv,n);
Expand Down Expand Up @@ -184,7 +184,7 @@ void SetEdgeBCsLo (int edge_dir, int i, int j, int k, int n,
// This is called for all quantities in the construction of edge states
//

Array<int> iv[3] iv[0] = i; iv[1] = j; iv[2] = k;
Array<int> iv[3]; iv[0] = i; iv[1] = j; iv[2] = k;
iv[edge_dir] = domlo-1;

Real s_ext = s(iv,n);
Expand Down Expand Up @@ -254,7 +254,7 @@ void SetEdgeBCsHi (int edge_dir, int i, int j, int k, int n,
// This is called for all quantities in the construction of edge states
//

Array<int> iv[3] iv[0] = i; iv[1] = j; iv[2] = k;
Array<int> iv[3]; iv[0] = i; iv[1] = j; iv[2] = k;
iv[edge_dir] = domhi+1;

Real s_ext = s(iv,n);
Expand Down

0 comments on commit 5571ade

Please sign in to comment.