@@ -22,16 +22,11 @@ module fpm_toml
22
22
private
23
23
24
24
public :: read_package_file
25
- public :: toml_table, toml_array, toml_key, toml_stat, get_value, set_value
25
+ public :: toml_table, toml_array, toml_key, toml_stat, get_value, set_value, get_list
26
26
public :: new_table, add_table, add_array, len
27
27
public :: toml_error, toml_serializer, toml_parse
28
28
29
29
30
- interface get_value
31
- module procedure :: get_child_value_string_list
32
- end interface get_value
33
-
34
-
35
30
contains
36
31
37
32
@@ -71,7 +66,7 @@ subroutine read_package_file(table, manifest, error)
71
66
end subroutine read_package_file
72
67
73
68
74
- subroutine get_child_value_string_list (table , key , list , error )
69
+ subroutine get_list (table , key , list , error )
75
70
76
71
! > Instance of the TOML data structure
77
72
type (toml_table), intent (inout ) :: table
@@ -114,7 +109,7 @@ subroutine get_child_value_string_list(table, key, list, error)
114
109
end if
115
110
end if
116
111
117
- end subroutine get_child_value_string_list
112
+ end subroutine get_list
118
113
119
114
120
115
end module fpm_toml
0 commit comments