mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
big int: fix Managed.dump()
This commit is contained in:
parent
eca20b5e03
commit
533bfc68bf
@ -1449,7 +1449,7 @@ pub const Managed = struct {
|
||||
for (self.limbs[0..self.len()]) |limb| {
|
||||
std.debug.warn("{x} ", .{limb});
|
||||
}
|
||||
std.debug.warn("capacity={} positive={}\n", .{ self.limbs.len, self.positive });
|
||||
std.debug.warn("capacity={} positive={}\n", .{ self.limbs.len, self.isPositive() });
|
||||
}
|
||||
|
||||
/// Negate the sign.
|
||||
|
Loading…
Reference in New Issue
Block a user