Skip to content

Commit ad0bb71

Browse files
committed
fix issue
1 parent 16ce4fb commit ad0bb71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stdlib_str2num.fypp

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
!> difference rel : 0.3300E-029%
2424

2525
module stdlib_str2num
26-
use stdlib_kinds, only: sp, dp, qp, int8, int32
26+
use stdlib_kinds, only: sp, dp, qp, int8, int16, int32, int64
2727
use ieee_arithmetic
2828
implicit none
2929
private
@@ -67,7 +67,7 @@ module stdlib_str2num
6767

6868
interface to_num_base
6969
#:for k1, t1 in INT_KINDS_TYPES
70-
module procedure to_${k1}$
70+
module procedure to_int_${k1}$
7171
#:endfor
7272
module procedure to_real_sp
7373
module procedure to_real_dp
@@ -203,7 +203,7 @@ module stdlib_str2num
203203
!---------------------------------------------
204204

205205
#:for k1, t1 in INT_KINDS_TYPES
206-
elemental subroutine to_${k1}$(s,v,p,stat)
206+
elemental subroutine to_int_${k1}$(s,v,p,stat)
207207
!> Return an unsigned 32-bit integer
208208
! -- In/out Variables
209209
character(*), intent(in) :: s !> input string

0 commit comments

Comments
 (0)