diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-07-16 10:53:15 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-07-16 10:53:15 -0400 |
| commit | e9a03cccf375f11aa4e0a8a3515e499c88d05cde (patch) | |
| tree | 6e6cd2117a7d25684a09a24be9f30ab684b650cc /std/math/big/int.zig | |
| parent | 363f4facea7fac2d6cfeab9d1d276ecd8e8e4df0 (diff) | |
| download | zig-e9a03cccf375f11aa4e0a8a3515e499c88d05cde.tar.gz zig-e9a03cccf375f11aa4e0a8a3515e499c88d05cde.zip | |
all integer sizes are available as primitives
* fix wrong implicit cast for `@IntType` bit_count parameter.
* fix incorrect docs for `@IntType` bit_count parameter.
closes #1242
closes #745
closes #1240
Diffstat (limited to 'std/math/big/int.zig')
| -rw-r--r-- | std/math/big/int.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/std/math/big/int.zig b/std/math/big/int.zig index 29673538eb..caa9d0a7ed 100644 --- a/std/math/big/int.zig +++ b/std/math/big/int.zig @@ -996,7 +996,6 @@ pub const Int = struct { // They will still run on larger than this and should pass, but the multi-limb code-paths // may be untested in some cases. -const u256 = @IntType(false, 256); const al = debug.global_allocator; test "big.int comptime_int set" { |
