authorgravatar for me@tadeo.caTadeo Kondrak <me@tadeo.ca> 2020-04-28 19:06:48-06:00
committergravatar for me@tadeo.caTadeo Kondrak <me@tadeo.ca> 2020-04-28 19:11:18-06:00
logeb183ad9febef775efabb1a4592f84d6cf088c28
treea1d322e0bf09b8e1d2d79220ab9926b7d8eec9d2
parent5929e5ca0ebde636dd69d52d648df8cff59e6d96
signaturelock-open Commit is signed but in an unrecognized format.

rename std.meta.IntType to std.meta.Int

Closes https://github.com/ziglang/zig/issues/5194

1 files changed, 4 insertions(+), 1 deletions(-)

lib/std/meta.zig+4-1
......@@ -642,7 +642,10 @@ pub fn declList(comptime Namespace: type, comptime Decl: type) []const *const De
642642 }
643643}
644644
645pub fn IntType(comptime is_signed: bool, comptime bit_count: u16) type {
645/// Deprecated: use Int
646pub const IntType = Int;
647
648pub fn Int(comptime is_signed: bool, comptime bit_count: u16) type {
646649 return @Type(TypeInfo{
647650 .Int = .{
648651 .is_signed = is_signed,