File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ contains
84
84
#:for sname, signt, signoppt in SIGN_NAME_TYPE
85
85
#:for k1, t1 in IRS_KINDS_TYPES
86
86
87
- module subroutine ${k1}$_${sname}$_ord_sort( array, work )
87
+ subroutine ${k1}$_${sname}$_ord_sort( array, work )
88
88
! A translation to Fortran 2008, of the `"Rust" sort` algorithm found in
89
89
! `slice.rs`
90
90
! https://github.com/rust-lang/rust/blob/90eb44a5897c39e3dff9c7e48e3973671dcd9496/src/liballoc/slice.rs#L2159
@@ -443,7 +443,7 @@ contains
443
443
444
444
445
445
#:for sname, signt, signoppt in SIGN_NAME_TYPE
446
- module subroutine char_${sname}$_ord_sort( array, work )
446
+ subroutine char_${sname}$_ord_sort( array, work )
447
447
! A translation to Fortran 2008, of the `"Rust" sort` algorithm found in
448
448
! `slice.rs`
449
449
! https://github.com/rust-lang/rust/blob/90eb44a5897c39e3dff9c7e48e3973671dcd9496/src/liballoc/slice.rs#L2159
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ contains
86
86
#:for sname, signt, signoppt in SIGN_NAME_TYPE
87
87
#:for k1, t1 in IRS_KINDS_TYPES
88
88
89
- pure module subroutine ${k1}$_${sname}$_sort( array )
89
+ pure subroutine ${k1}$_${sname}$_sort( array )
90
90
! `${k1}$_sort( array )` sorts the input `ARRAY` of type `${t1}$`
91
91
! using a hybrid sort based on the `introsort` of David Musser. As with
92
92
! `introsort`, `${k1}$_sort( array )` is an unstable hybrid comparison
@@ -274,7 +274,7 @@ contains
274
274
275
275
276
276
#:for sname, signt, signoppt in SIGN_NAME_TYPE
277
- pure module subroutine char_${sname}$_sort( array )
277
+ pure subroutine char_${sname}$_sort( array )
278
278
! `char_sort( array )` sorts the input `ARRAY` of type `CHARACTER(*)`
279
279
! using a hybrid sort based on the `introsort` of David Musser. As with
280
280
! `introsort`, `char_sort( array )` is an unstable hybrid comparison
You can’t perform that action at this time.
0 commit comments