Function deinit [src]

Prototype

pub fn deinit(self: *Pdb) void

Parameters

self: *Pdb

Source

pub fn deinit(self: *Pdb) void { const gpa = self.allocator; self.msf.deinit(gpa); for (self.modules) |*module| { module.deinit(gpa); } gpa.free(self.modules); gpa.free(self.sect_contribs); }