aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Hashimoto <mitchell.hashimoto@gmail.com>2022-02-25 13:37:07 -0800
committerMitchell Hashimoto <mitchell.hashimoto@gmail.com>2022-02-25 13:37:07 -0800
commit4a6f91802929ce62ce0cedff5258fd9afb8a6dcb (patch)
treec4297d57cafb2e71a18d1d5156fed057ea7d3c5e
parentbcf3eb5663af744dc5b6da7ec729d153c366dd42 (diff)
downloadzig-4a6f91802929ce62ce0cedff5258fd9afb8a6dcb.tar.gz
zig-4a6f91802929ce62ce0cedff5258fd9afb8a6dcb.zip
stage2: remove extranneous debug
-rw-r--r--src/Sema.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Sema.zig b/src/Sema.zig
index a03db84d2c..f30b8fd16c 100644
--- a/src/Sema.zig
+++ b/src/Sema.zig
@@ -17295,8 +17295,6 @@ fn resolvePeerTypes(
// turn []T => []const T
var info = chosen_ty.ptrInfo();
info.data.mutable = false;
-
- std.debug.print("TYPE: {}\n", .{Type.ptr(sema.arena, info.data)});
return Type.ptr(sema.arena, info.data);
}