Skip to content

Commit 3a81368

Browse files
committed
fix(sourcery_m):order use/implicit none statements
1 parent cbfb82f commit 3a81368

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

src/sourcery_m.f90

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
module sourcery_m
22
!! export all public entities from every other sourcery module
3-
implicit none
3+
use command_line_m, only : command_line_t
4+
use data_partition_m, only : data_partition_t
5+
use formats_m, only : formats_t
6+
use file_m, only : file_t
7+
use string_m, only : string_t
8+
use test_result_m, only : test_result_t
9+
use test_m, only : test_t
10+
use user_defined_collectives_m, only : co_all
411

5-
use command_line_m
6-
use string_m
7-
use file_m
8-
use test_result_m
9-
use formats_m
10-
use oracle_m
11-
use object_m
12-
use user_defined_collectives_m
13-
use data_partition_m
14-
use test_m
12+
!! legacy modules (likely to be removed in a future release):
13+
use object_m, only : object_t
14+
use co_object_m, only : co_object_t
15+
use oracle_m, only : oracle_t
1516
use units_m
16-
use co_object_m
17+
18+
implicit none
1719

1820
end module sourcery_m

0 commit comments

Comments
 (0)