@@ -36,19 +36,19 @@ module fpm_toml
36
36
contains
37
37
38
38
! > Dump to TOML table, unit, file
39
- procedure (to_toml), deferred, private :: dump_to_toml
39
+ procedure (to_toml), deferred :: dump_to_toml
40
40
procedure , non_overridable, private :: dump_to_file
41
41
procedure , non_overridable, private :: dump_to_unit
42
42
generic :: dump = > dump_to_toml, dump_to_file, dump_to_unit
43
43
44
44
! > Load from TOML table, unit, file
45
- procedure (from_toml), deferred, private :: load_from_toml
45
+ procedure (from_toml), deferred :: load_from_toml
46
46
procedure , non_overridable, private :: load_from_file
47
47
procedure , non_overridable, private :: load_from_unit
48
48
generic :: load = > load_from_toml, load_from_file, load_from_unit
49
49
50
50
! > Serializable entities need a way to check that they're equal
51
- procedure (is_equal), deferred, private :: serializable_is_same
51
+ procedure (is_equal), deferred :: serializable_is_same
52
52
generic :: operator (==) = > serializable_is_same
53
53
54
54
! > Test load/write roundtrip
0 commit comments