Skip to content

Commit

Permalink
Remove some debugging leftovers in list_symbols.zig.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Oct 12, 2024
1 parent b23be92 commit 23fa293
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions list_symbols.zig
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,7 @@ pub fn main() !void {
var lib_index = try r.readByte();
const is_terminal = (lib_index & (1 << 7)) != 0;
if (is_terminal) {
std.debug.print("before: {}\n", .{lib_index});
lib_index &= ~@as(u8, 1 << 7);
std.debug.print("after: {}\n", .{lib_index});
opt_symbol_name = null;
}

Expand Down Expand Up @@ -142,9 +140,7 @@ pub fn main() !void {
var lib_index = try r.readByte();
const is_terminal = (lib_index & (1 << 7)) != 0;
if (is_terminal) {
std.debug.print("before: {}\n", .{lib_index});
lib_index &= ~@as(u8, 1 << 7);
std.debug.print("after: {}\n", .{lib_index});
opt_symbol_name = null;
}

Expand Down

0 comments on commit 23fa293

Please sign in to comment.