diff options
| author | Tadeo Kondrak <me@tadeo.ca> | 2020-04-28 19:10:09 -0600 |
|---|---|---|
| committer | Tadeo Kondrak <me@tadeo.ca> | 2020-04-28 19:11:31 -0600 |
| commit | 350b2adacda217014dc511ccc4cd73f22ddaac22 (patch) | |
| tree | 519115799840c1abe4be6aa708a3ca5079fbd817 /lib/std/os/bits/linux.zig | |
| parent | eb183ad9febef775efabb1a4592f84d6cf088c28 (diff) | |
| download | zig-350b2adacda217014dc511ccc4cd73f22ddaac22.tar.gz zig-350b2adacda217014dc511ccc4cd73f22ddaac22.zip | |
std.meta.IntType -> std.meta.Int
Diffstat (limited to 'lib/std/os/bits/linux.zig')
| -rw-r--r-- | lib/std/os/bits/linux.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os/bits/linux.zig b/lib/std/os/bits/linux.zig index 1d2a957036..750b487754 100644 --- a/lib/std/os/bits/linux.zig +++ b/lib/std/os/bits/linux.zig @@ -1037,7 +1037,7 @@ pub const dl_phdr_info = extern struct { pub const CPU_SETSIZE = 128; pub const cpu_set_t = [CPU_SETSIZE / @sizeOf(usize)]usize; -pub const cpu_count_t = std.meta.IntType(false, std.math.log2(CPU_SETSIZE * 8)); +pub const cpu_count_t = std.meta.Int(false, std.math.log2(CPU_SETSIZE * 8)); pub fn CPU_COUNT(set: cpu_set_t) cpu_count_t { var sum: cpu_count_t = 0; |
