File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -591,14 +591,15 @@ end subroutine move_pointer_in_json_file
591
591
!
592
592
! SOURCE
593
593
594
- subroutine load_json_file (me , filename )
594
+ subroutine load_json_file (me , filename , unit )
595
595
596
596
implicit none
597
597
598
598
class(json_file),intent (inout ) :: me
599
599
character (len=* ),intent (in ) :: filename
600
+ integer ,intent (in ),optional :: unit
600
601
601
- call json_parse(filename, me% p)
602
+ call json_parse(file = filename, p = me% p, unit = unit )
602
603
603
604
end subroutine load_json_file
604
605
! *****************************************************************************************
@@ -1285,7 +1286,7 @@ end subroutine json_value_destroy
1285
1286
! ****f* json_module/json_value_remove
1286
1287
!
1287
1288
! NAME
1288
- ! json_value_destroy
1289
+ ! json_value_remove
1289
1290
!
1290
1291
! DESCRIPTION
1291
1292
! Remove a json_value (and all its children)
@@ -4206,7 +4207,7 @@ end subroutine parse_object
4206
4207
!
4207
4208
! SOURCE
4208
4209
4209
- subroutine parse_array (unit , array )
4210
+ recursive subroutine parse_array (unit , array )
4210
4211
4211
4212
implicit none
4212
4213
You can’t perform that action at this time.
0 commit comments