Remove allocator which isn't gonna be used

This commit is contained in:
Robin Voetter
2020-08-14 21:34:17 +02:00
parent a0ec1b7fbe
commit 94ad431332
2 changed files with 2 additions and 4 deletions

View File

@@ -69,5 +69,5 @@ pub fn generate(allocator: *Allocator, spec_jsons: []const []const u8, writer: a
}
const merged = try mergeRegistries(&arena.allocator, core_registry, ext_registries);
try renderSpirv(writer, &arena.allocator, &merged);
try renderSpirv(writer, &merged);
}