From cbd7a2efcb367677f189e3bfed0f8206b1bd474d Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Fri, 5 Mar 2021 18:37:21 -0500 Subject: fix issues raised by dmd2.095.1 ldc2 1.25.0 --- org/default_paths.org | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'org/default_paths.org') diff --git a/org/default_paths.org b/org/default_paths.org index 5c4e15e..4df17e8 100644 --- a/org/default_paths.org +++ b/org/default_paths.org @@ -1455,6 +1455,7 @@ template spinePathsEPUB() { #+NAME: template_paths_odf #+BEGIN_SRC d template spinePathsODT() { + import std.conv; mixin spineRgxIn; static auto rgx = RgxI(); auto spinePathsODT(M)( @@ -1471,8 +1472,8 @@ template spinePathsODT() { } string dirtop(string type) { return (type == "zip") - ? "".chainPath("").array - : ((base_pth.chainPath(doc_matters.src.doc_uid_out)).asNormalizedPath).array; + ? "" // ".chainPath("").array + : ((base_pth.chainPath(doc_matters.src.doc_uid_out)).asNormalizedPath).array.to!string; } string mimetype(string type="fs") { assert(type == "zip" || "fs"); -- cgit v1.2.3