| author | |
| committer | |
| log | 5859d8458f919676be804835aaeb3ed844a67542 |
| tree | 23240de8e5b599cf8c7c999c1943d2c18dc60b66 |
| parent | d638b2e29f8799889b53f559bdde40fe03f2b665 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/math/big/int.zig+1-1| ... | ... | @@ -1845,7 +1845,7 @@ pub const Mutable = struct { |
| 1845 | 1845 | /// [1, 2, 3, 4, 0] -> [1, 2, 3, 4] |
| 1846 | 1846 | /// [1, 2, 0, 0, 0] -> [1, 2] |
| 1847 | 1847 | /// [0, 0, 0, 0, 0] -> [0] |
| 1848 | fn normalize(r: *Mutable, length: usize) void { | |
| 1848 | pub fn normalize(r: *Mutable, length: usize) void { | |
| 1849 | 1849 | r.len = llnormalize(r.limbs[0..length]); |
| 1850 | 1850 | } |
| 1851 | 1851 | }; |