Skip to content

Commit 9b7f687

Browse files
committed
indent use statements
1 parent 35cfbcc commit 9b7f687

File tree

4 files changed

+113
-115
lines changed

4 files changed

+113
-115
lines changed

fortran_tests/after/example.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pure function test_function(r, i, j, &
4343
end module
4444

4545
program example_prog
46-
use example, only: dp, test_routine, test_function, test_type,str_function
46+
use example, only:dp, test_routine, test_function, test_type, str_function
4747

4848
implicit none
4949
integer :: r, i, j, k, l, my_integer, m

fortran_tests/after/invalid.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pure function test_function(r, i, j, &
3939
end module
4040

4141
program example_prog
42-
use example, only: dp, test_routine, test_function, test_type,str_function
42+
use example, only:dp, test_routine, test_function, test_type, str_function
4343

4444
implicit none
4545
integer :: r, i, j, k, l, my_integer, m

0 commit comments

Comments
 (0)