diff options
author | Daniil Baturin <daniil@baturin.org> | 2015-09-23 02:35:14 +0600 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2015-09-23 02:35:14 +0600 |
commit | 5b4deef7ca8916ebcc15062b32019b0488e039bc (patch) | |
tree | ce80149d3d9c54548e8cf91b50e07dae9023adfa /src/config_tree.mli | |
parent | c007e11142c605aaa8e8f3a0ff56b0fe657f8407 (diff) | |
download | vyconf-5b4deef7ca8916ebcc15062b32019b0488e039bc.tar.gz vyconf-5b4deef7ca8916ebcc15062b32019b0488e039bc.zip |
Make Config_tree.set aware of valueless nodes.
Diffstat (limited to 'src/config_tree.mli')
-rw-r--r-- | src/config_tree.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config_tree.mli b/src/config_tree.mli index e4c91fc..27042f8 100644 --- a/src/config_tree.mli +++ b/src/config_tree.mli @@ -14,7 +14,7 @@ val default_data : config_node_data val make : string -> t -val set : t -> string list -> string -> value_behaviour -> t +val set : t -> string list -> string option -> value_behaviour -> t val delete : t -> string list -> string option -> t |