diff options
| author | Loris Cro <kappaloris@gmail.com> | 2022-01-30 19:12:56 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-07-19 19:10:10 -0700 |
| commit | 0135d2271600db92d1ae727b2a5935d0fc711c13 (patch) | |
| tree | 762b41dafac87eb5f581ab48cbc3d56347149c0b /src/Compilation.zig | |
| parent | 38281c8ed421b8febadb2d4e05291fcf4a871ccc (diff) | |
| download | zig-0135d2271600db92d1ae727b2a5935d0fc711c13.tar.gz zig-0135d2271600db92d1ae727b2a5935d0fc711c13.zip | |
autodocs: add support for indirect decl references
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index cadc665598..d4e3c13133 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -2870,6 +2870,7 @@ pub fn performAllTheWork( if (comp.emit_docs) |doc_location| { if (comp.bin_file.options.module) |module| { var autodoc = Autodoc.init(module, doc_location); + defer autodoc.deinit(); try autodoc.generateZirData(); } } |
