Skip to content

Commit 4e2a439

Browse files
committed
removed &
1 parent 12eabf4 commit 4e2a439

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/simulation/m_riemann_solvers.fpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -161,20 +161,20 @@ contains
161161
flux_gsrc_vf, &
162162
norm_dir, ix, iy, iz)
163163

164-
real(wp), dimension(idwbuff(1)%beg:, idwbuff(2)%beg:, idwbuff(3)%beg:, 1:), intent(INOUT) :: qL_prim_rsx_vf, qL_prim_rsy_vf, qL_prim_rsz_vf, qR_prim_rsx_vf, qR_prim_rsy_vf, qR_prim_rsz_vf
164+
real(wp), dimension(idwbuff(1)%beg:, idwbuff(2)%beg:, idwbuff(3)%beg:, 1:), intent(inout) :: qL_prim_rsx_vf, qL_prim_rsy_vf, qL_prim_rsz_vf, qR_prim_rsx_vf, qR_prim_rsy_vf, qR_prim_rsz_vf
165165
type(scalar_field), dimension(sys_size), intent(IN) :: q_prim_vf
166166

167-
type(scalar_field), allocatable, dimension(:), intent(INOUT) :: qL_prim_vf, qR_prim_vf
167+
type(scalar_field), allocatable, dimension(:), intent(inout) :: qL_prim_vf, qR_prim_vf
168168

169169
type(scalar_field), &
170170
allocatable, dimension(:), &
171-
intent(INOUT) :: dqL_prim_dx_vf, dqR_prim_dx_vf, &
171+
intent(inout) :: dqL_prim_dx_vf, dqR_prim_dx_vf, &
172172
dqL_prim_dy_vf, dqR_prim_dy_vf, &
173173
dqL_prim_dz_vf, dqR_prim_dz_vf
174174

175175
type(scalar_field), &
176176
dimension(sys_size), &
177-
intent(INOUT) :: flux_vf, flux_src_vf, flux_gsrc_vf
177+
intent(inout) :: flux_vf, flux_src_vf, flux_gsrc_vf
178178

179179
integer, intent(IN) :: norm_dir
180180

@@ -225,7 +225,7 @@ contains
225225

226226
type(scalar_field), &
227227
dimension(sys_size), &
228-
intent(INOUT) :: flux_src_vf
228+
intent(inout) :: flux_src_vf
229229

230230
integer, intent(IN) :: norm_dir
231231

@@ -3278,7 +3278,7 @@ contains
32783278
allocatable, dimension(:), &
32793279
target, intent(inout) :: dqL_prim_dx_vf, dqR_prim_dx_vf, &
32803280
dqL_prim_dy_vf, dqR_prim_dy_vf, &
3281-
dqL_prim_dz_vf, dqR_prim_dz_vf, &
3281+
dqL_prim_dz_vf, dqR_prim_dz_vf
32823282
32833283
type(scalar_field), allocatable, dimension(:), pointer:: dqL_prim_d_vf, dqR_prim_d_vf
32843284

0 commit comments

Comments
 (0)