diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-05-14 11:35:24 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-08-19 14:42:43 -0400 |
commit | 24c9ed3645178a6ee2abbd9201fa4643dba068e2 (patch) | |
tree | 37cd2dbe489d8ab850fd814cdec63004c9a3150c /org/output_hub.org | |
parent | doc_abstraction reduce use of return ref, check (diff) |
review, reduce use of auto
Diffstat (limited to 'org/output_hub.org')
-rw-r--r-- | org/output_hub.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org/output_hub.org b/org/output_hub.org index 0d709ab..21f5b9d 100644 --- a/org/output_hub.org +++ b/org/output_hub.org @@ -28,7 +28,7 @@ module doc_reform.output.hub; template outputHub() { <<output_imports>> import std.parallelism; - void outputHub(D,I)(D doc_abstraction, I doc_matters) { + void outputHub(D,I)(const D doc_abstraction, I doc_matters) { mixin DocReformOutputRgxInit; mixin Msg; auto msg = Msg!()(doc_matters); |