diff options
Diffstat (limited to 'org/out_zip.org')
-rw-r--r-- | org/out_zip.org | 3 |
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, ) { |