| author | |
| committer | |
| log | ac385bd8a6bc79c7d7bd3a568dde5002ebb34e08 |
| tree | 5b2d26044944462af30baee00f6cc8d74be3b944 |
| parent | cd7e2bf57a4da6965df9a2d8662a9b95f63cf595 |
https://www.nist.gov/pml/owm/metric-si-prefixes
https://www.npl.co.uk/si-prefix1 files changed, 2 insertions(+), 0 deletions(-)
lib/std/fmt.zig+2| ... | @@ -1925,6 +1925,8 @@ pub fn parseIntSizeSuffix(buf: []const u8, radix: u8) ParseIntError!usize { | ... | @@ -1925,6 +1925,8 @@ pub fn parseIntSizeSuffix(buf: []const u8, radix: u8) ParseIntError!usize { |
| 1925 | 'E' => 6, | 1925 | 'E' => 6, |
| 1926 | 'Z' => 7, | 1926 | 'Z' => 7, |
| 1927 | 'Y' => 8, | 1927 | 'Y' => 8, |
| 1928 | 'R' => 9, | ||
| 1929 | 'Q' => 10, | ||
| 1928 | else => 0, | 1930 | else => 0, |
| 1929 | }; | 1931 | }; |
| 1930 | var without_suffix = without_i; | 1932 | var without_suffix = without_i; |