Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdp1 committed Jul 9, 2024
1 parent 5230234 commit 962bcc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/stdlib_sorting.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#! This approach allows us to have the same code for all input types.
#:set IRSCB_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME + STRING_TYPES_ALT_NAME + CHAR_TYPES_ALT_NAME &
& + BITSET_TYPES_ALT_NAME
#:set IRC_INDEX_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME
#:set IR_INDEX_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME



Expand Down Expand Up @@ -523,7 +523,7 @@ module stdlib_sorting
!! non-decreasing sort, but if the optional argument `REVERSE` is present
!! with a value of `.TRUE.` the indices correspond to a non-increasing sort.
#:for ki, ti, namei in IRC_INDEX_TYPES_ALT_NAME
#:for ti, tii, namei in IR_INDEX_TYPES_ALT_NAME
#:for t1, t2, name1 in IRSCB_TYPES_ALT_NAME
module subroutine ${name1}$_${namei}$_sort_adj( array, index, work, iwork, &
reverse )
Expand Down
4 changes: 2 additions & 2 deletions src/stdlib_sorting_sort_adj.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#! This approach allows us to have the same code for all input types.
#:set IRSCB_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME + STRING_TYPES_ALT_NAME + CHAR_TYPES_ALT_NAME &
& + BITSET_TYPES_ALT_NAME
#:set IRC_INDEX_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME
#:set IR_INDEX_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME

!! Licensing:
!!
Expand Down Expand Up @@ -67,7 +67,7 @@ submodule(stdlib_sorting) stdlib_sorting_sort_adj
contains
#:for ki, ti, tii, namei in IRC_INDEX_TYPES_ALT_NAME
#:for ki, ti, tii, namei in IR_INDEX_TYPES_ALT_NAME
#:for t1, t2, t3, name1 in IRSCB_TYPES_ALT_NAME
module subroutine ${name1}$_${namei}$_sort_adj( array, index, work, iwork, reverse )
Expand Down

0 comments on commit 962bcc4

Please sign in to comment.