diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2021-02-23 19:18:36 +0100 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2021-02-23 19:18:36 +0100 |
| commit | 6b9f19a6449b0fe5dce835590fcd6d13b5c785c4 (patch) | |
| tree | df6f10971aa567954c43f9a88ddc927a4fb7a5ca /lib/std | |
| parent | 0f24b61ed543ad4879c5f9ef607bd856ce016f75 (diff) | |
| download | zig-6b9f19a6449b0fe5dce835590fcd6d13b5c785c4.tar.gz zig-6b9f19a6449b0fe5dce835590fcd6d13b5c785c4.zip | |
zig fmt: remove stray std.debug.print()
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/zig/render.zig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/std/zig/render.zig b/lib/std/zig/render.zig index be807a05b6..60f54c4ab5 100644 --- a/lib/std/zig/render.zig +++ b/lib/std/zig/render.zig @@ -1416,9 +1416,7 @@ fn renderFnProto(gpa: *Allocator, ais: *Ais, tree: ast.Tree, fn_proto: ast.full. continue; }, .r_paren => break, - else => { - std.debug.print("\n{}\n", .{token_tags[last_param_token]}); - }, + else => unreachable, } if (token_tags[last_param_token] == .identifier) { try renderToken(ais, tree, last_param_token, .none); // name |
