Skip to content

Commit 962bcc4

Browse files
committed
cleaning
1 parent 5230234 commit 962bcc4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/stdlib_sorting.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#! This approach allows us to have the same code for all input types.
1414
#:set IRSCB_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME + STRING_TYPES_ALT_NAME + CHAR_TYPES_ALT_NAME &
1515
& + BITSET_TYPES_ALT_NAME
16-
#:set IRC_INDEX_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME
16+
#:set IR_INDEX_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME
1717

1818

1919

@@ -523,7 +523,7 @@ module stdlib_sorting
523523
!! non-decreasing sort, but if the optional argument `REVERSE` is present
524524
!! with a value of `.TRUE.` the indices correspond to a non-increasing sort.
525525

526-
#:for ki, ti, namei in IRC_INDEX_TYPES_ALT_NAME
526+
#:for ti, tii, namei in IR_INDEX_TYPES_ALT_NAME
527527
#:for t1, t2, name1 in IRSCB_TYPES_ALT_NAME
528528
module subroutine ${name1}$_${namei}$_sort_adj( array, index, work, iwork, &
529529
reverse )

src/stdlib_sorting_sort_adj.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#! This approach allows us to have the same code for all input types.
1111
#:set IRSCB_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME + STRING_TYPES_ALT_NAME + CHAR_TYPES_ALT_NAME &
1212
& + BITSET_TYPES_ALT_NAME
13-
#:set IRC_INDEX_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME
13+
#:set IR_INDEX_TYPES_ALT_NAME = INT_TYPES_ALT_NAME + REAL_TYPES_ALT_NAME
1414

1515
!! Licensing:
1616
!!
@@ -67,7 +67,7 @@ submodule(stdlib_sorting) stdlib_sorting_sort_adj
6767

6868
contains
6969

70-
#:for ki, ti, tii, namei in IRC_INDEX_TYPES_ALT_NAME
70+
#:for ki, ti, tii, namei in IR_INDEX_TYPES_ALT_NAME
7171
#:for t1, t2, t3, name1 in IRSCB_TYPES_ALT_NAME
7272

7373
module subroutine ${name1}$_${namei}$_sort_adj( array, index, work, iwork, reverse )

0 commit comments

Comments
 (0)