aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/out_zip.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2024-03-12 22:39:09 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2024-03-12 22:56:34 -0400
commite9e17be24eba558c30fcdc41ea5bb9a1da7fd4e7 (patch)
tree1ed3c4b528b0a8e54d0eb9babc391e562578c7b4 /org/out_zip.org
parentnix flake & env upkeep (diff)
mark modules as @safe: (& identify what is not)
Diffstat (limited to 'org/out_zip.org')
-rw-r--r--org/out_zip.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/org/out_zip.org b/org/out_zip.org
index 1435458..1302d18 100644
--- a/org/out_zip.org
+++ b/org/out_zip.org
@@ -26,13 +26,14 @@
#+BEGIN_SRC d
<<doc_header_including_copyright_and_license>>
module doc_reform.io_out.create_zip_file;
+@safe:
template createZipFile() {
import
std.file,
std.outbuffer,
std.string,
std.zip;
- @safe void createZipFile(
+ void createZipFile(
string zip_file_name,
void[] compressed_zip_data,
) {