diff options
author | Ralph Amissah <ralph@amissah.com> | 2020-01-25 12:22:01 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2020-02-26 09:59:18 -0500 |
commit | c4d2cedb930a48d6439d6ff2076183fd48fc6a5a (patch) | |
tree | 8fbcd699336a971983e169298b8f3b80e2009616 /org/meta_conf_make_meta.org | |
parent | update headers and year (diff) |
address compilation issues with dmd (v2.090.0)
Diffstat (limited to 'org/meta_conf_make_meta.org')
-rw-r--r-- | org/meta_conf_make_meta.org | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/org/meta_conf_make_meta.org b/org/meta_conf_make_meta.org index 898db4f..9468614 100644 --- a/org/meta_conf_make_meta.org +++ b/org/meta_conf_make_meta.org @@ -339,7 +339,7 @@ JSONValue config_jsonstr = `{ extract yaml header return struct +/ module doc_reform.meta.conf_make_meta_yaml; -static template contentYAMLtoSpineStruct() { +template contentYAMLtoSpineStruct() { import std.algorithm, std.array, @@ -1816,7 +1816,7 @@ if ("rights" in _json.object) { ** 1. parse Yaml config return spineStruct #+BEGIN_SRC d :tangle "../src/doc_reform/meta/conf_make_meta_yaml.d" -static template configParseYAMLreturnSpineStruct() { +template configParseYAMLreturnSpineStruct() { import dyaml; import doc_reform.meta.conf_make_meta_structs, @@ -1847,7 +1847,7 @@ static template configParseYAMLreturnSpineStruct() { ** 2. parse YAML header to +(JSON then)+ Struct #+BEGIN_SRC d :tangle "../src/doc_reform/meta/conf_make_meta_yaml.d" -static template docHeaderMakeAndMetaTupYamlExtractAndConvertToStruct() { +template docHeaderMakeAndMetaTupYamlExtractAndConvertToStruct() { import std.exception, std.regex, |