Skip to content

Commit

Permalink
Merge pull request Manishearth#84 from Razican/i128_stable
Browse files Browse the repository at this point in the history
i128/u128 is stable for some time now
Manishearth authored Apr 17, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 7f66ffb + 43d64b1 commit 8b56408
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion gc/src/trace.rs
Original file line number Diff line number Diff line change
@@ -118,7 +118,6 @@ simple_empty_finalize_trace![(), isize, usize, bool, i8, u8, i16, u16, i32,
u32, i64, u64, f32, f64, char, String, Path, PathBuf, AtomicBool,
AtomicIsize, AtomicUsize];

#[cfg(feature = "nightly")]
simple_empty_finalize_trace![i128, u128];

macro_rules! array_finalize_trace {
3 changes: 0 additions & 3 deletions gc/tests/i128.rs
Original file line number Diff line number Diff line change
@@ -2,16 +2,13 @@

extern crate gc;

#[allow(unused_imports)]
use gc::Gc;

#[cfg(feature = "nightly")]
#[test]
fn i128() {
Gc::new(0i128);
}

#[cfg(feature = "nightly")]
#[test]
fn u128() {
Gc::new(0u128);

0 comments on commit 8b56408

Please sign in to comment.