aboutsummaryrefslogtreecommitdiff
path: root/src/Module.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Module.zig')
-rw-r--r--src/Module.zig14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Module.zig b/src/Module.zig
index 5436071fc1..43c0178863 100644
--- a/src/Module.zig
+++ b/src/Module.zig
@@ -4249,20 +4249,6 @@ pub fn errNoteNonLazy(
};
}
-pub fn optionalType(arena: *Allocator, child_type: Type) Allocator.Error!Type {
- switch (child_type.tag()) {
- .single_const_pointer => return Type.Tag.optional_single_const_pointer.create(
- arena,
- child_type.elemType(),
- ),
- .single_mut_pointer => return Type.Tag.optional_single_mut_pointer.create(
- arena,
- child_type.elemType(),
- ),
- else => return Type.Tag.optional.create(arena, child_type),
- }
-}
-
pub fn errorUnionType(
arena: *Allocator,
error_set: Type,