diff options
| author | Simonas Kazlauskas <git@kazlauskas.me> | 2016-08-25 02:16:21 +0300 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2016-12-30 15:17:26 +0100 |
| commit | 508fef5dffa5e0fad578f6faa13cfce86ead9463 (patch) | |
| tree | 1909795f142f366fec4479d734d665a3d1b9a788 /src/libcore | |
| parent | db2527add3a9442266e7d31a218b91cda255bd4a (diff) | |
| download | rust-508fef5dffa5e0fad578f6faa13cfce86ead9463.tar.gz rust-508fef5dffa5e0fad578f6faa13cfce86ead9463.zip | |
impl Step for iu128
Also fix the leb128 tests
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/iter/range.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/iter/range.rs b/src/libcore/iter/range.rs index e6f21d6c17a..9d22037882f 100644 --- a/src/libcore/iter/range.rs +++ b/src/libcore/iter/range.rs @@ -242,6 +242,8 @@ step_impl_signed!(i64); // assume here that it is less than 64-bits. #[cfg(not(target_pointer_width = "64"))] step_impl_no_between!(u64 i64); +#[cfg(not(stage0))] +step_impl_no_between!(u128 i128); /// An adapter for stepping range iterators by a custom amount. /// |
