std.meta.IntType -> std.meta.Int

This commit is contained in:
Tadeo Kondrak
2020-04-28 19:10:09 -06:00
parent eb183ad9fe
commit 350b2adacd
40 changed files with 107 additions and 107 deletions

View File

@@ -367,7 +367,7 @@ test "fmt.parseFloat" {
const epsilon = 1e-7;
inline for ([_]type{ f16, f32, f64, f128 }) |T| {
const Z = std.meta.IntType(false, T.bit_count);
const Z = std.meta.Int(false, T.bit_count);
testing.expectError(error.InvalidCharacter, parseFloat(T, ""));
testing.expectError(error.InvalidCharacter, parseFloat(T, " 1"));