Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
cgbur committed Aug 19, 2023
1 parent 50b5893 commit 47c0355
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ fn makeRow(allocator: Allocator, prev: f32, cur: f32, raw: bool) !DiffItem {
} else {
const prev_int: u64 = @intFromFloat(prev);
const cur_int: u64 = @intFromFloat(cur);
std.debug.print("diff = {d}\n", .{diff});
const precision = sizeFormatPrecision(diff);
previous = try std.fmt.allocPrint(allocator, "{[prev]s:.[prec]}", .{
.prev = std.fmt.fmtIntSizeBin(prev_int),
Expand Down

0 comments on commit 47c0355

Please sign in to comment.