@@ -8571,7 +8571,7 @@ subroutine json_get_real32(json, me, value)
8571
8571
real (RK) :: tmp
8572
8572
8573
8573
call json% get(me, tmp)
8574
- value = real (tmp,RK )
8574
+ value = real (tmp,real32 )
8575
8575
8576
8576
end subroutine json_get_real32
8577
8577
! *****************************************************************************************
@@ -8601,7 +8601,7 @@ subroutine json_get_real32_by_path(json, me, path, value, found, default)
8601
8601
call json% get(me, path, tmp, found)
8602
8602
end if
8603
8603
8604
- value = real (tmp,RK )
8604
+ value = real (tmp,real32 )
8605
8605
8606
8606
end subroutine json_get_real32_by_path
8607
8607
! *****************************************************************************************
@@ -8641,7 +8641,7 @@ subroutine json_get_real32_vec(json, me, vec)
8641
8641
real (RK),dimension (:),allocatable :: tmp
8642
8642
8643
8643
call json% get(me, tmp)
8644
- if (allocated (tmp)) vec = real (tmp,RK )
8644
+ if (allocated (tmp)) vec = real (tmp,real32 )
8645
8645
8646
8646
end subroutine json_get_real32_vec
8647
8647
! *****************************************************************************************
@@ -8671,7 +8671,7 @@ subroutine json_get_real32_vec_by_path(json, me, path, vec, found, default)
8671
8671
call json% get(me, path, tmp, found)
8672
8672
end if
8673
8673
8674
- if (allocated (tmp)) vec = real (tmp,RK )
8674
+ if (allocated (tmp)) vec = real (tmp,real32 )
8675
8675
8676
8676
end subroutine json_get_real32_vec_by_path
8677
8677
! *****************************************************************************************
@@ -8713,7 +8713,7 @@ subroutine json_get_real64(json, me, value)
8713
8713
real (RK) :: tmp
8714
8714
8715
8715
call json% get(me, tmp)
8716
- value = real (tmp,RK )
8716
+ value = real (tmp,real64 )
8717
8717
8718
8718
end subroutine json_get_real64
8719
8719
! *****************************************************************************************
@@ -8736,7 +8736,7 @@ subroutine json_get_real64_by_path(json, me, path, value, found, default)
8736
8736
real (RK) :: tmp
8737
8737
8738
8738
call json% get(me, path, tmp, found, default)
8739
- value = real (tmp,RK )
8739
+ value = real (tmp,real64 )
8740
8740
8741
8741
end subroutine json_get_real64_by_path
8742
8742
! *****************************************************************************************
@@ -8776,7 +8776,7 @@ subroutine json_get_real64_vec(json, me, vec)
8776
8776
real (RK),dimension (:),allocatable :: tmp
8777
8777
8778
8778
call json% get(me, tmp)
8779
- if (allocated (tmp)) vec = real (tmp,RK )
8779
+ if (allocated (tmp)) vec = real (tmp,real64 )
8780
8780
8781
8781
end subroutine json_get_real64_vec
8782
8782
! *****************************************************************************************
@@ -8799,7 +8799,7 @@ subroutine json_get_real64_vec_by_path(json, me, path, vec, found, default)
8799
8799
real (RK),dimension (:),allocatable :: tmp
8800
8800
8801
8801
call json% get(me, path, tmp, found, default)
8802
- if (allocated (tmp)) vec = real (tmp,RK )
8802
+ if (allocated (tmp)) vec = real (tmp,real64 )
8803
8803
8804
8804
end subroutine json_get_real64_vec_by_path
8805
8805
! *****************************************************************************************
0 commit comments