Skip to content

Commit b91cee9

Browse files
committed
Ran formatter
1 parent ebb6be4 commit b91cee9

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

src/common/m_helper.fpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,5 +573,4 @@ contains
573573
574574
end function factorial
575575
576-
577576
end module m_helper

src/common/m_helper_basic.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ end subroutine s_configure_coordinate_bounds
121121
pure elemental subroutine s_update_cell_bounds(bounds, m, n, p)
122122
type(cell_num_bounds), intent(out) :: bounds
123123
integer, intent(in) :: m, n, p
124-
124+
125125
bounds%mn_max = max(m, n)
126126
bounds%np_max = max(n, p)
127127
bounds%mp_max = max(m, p)

src/post_process/m_start_up.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ module m_start_up
4343

4444
use m_helper_basic, only: s_update_cell_bounds
4545

46-
4746
implicit none
4847

4948
contains

src/pre_process/m_mpi_proxy.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ module m_mpi_proxy
2020
use m_global_parameters !< Global parameters for the code
2121
2222
use m_mpi_common
23-
23+
2424
use m_helper_basic, only: s_update_cell_bounds
25-
25+
2626
implicit none
2727
2828
integer, private :: err_code, ierr, v_size !<

0 commit comments

Comments
 (0)