Skip to content

Commit e9eac6b

Browse files
committed
Remove unnecessary feature gates
One wasn't necessary anymore at all. Others are only necessary when jit mode is enabled.
1 parent 6f5c9b9 commit e9eac6b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#![feature(rustc_private, decl_macro, never_type, hash_drain_filter, vec_into_raw_parts, once_cell)]
1+
#![feature(rustc_private, decl_macro)]
2+
#![cfg_attr(feature = "jit", feature(never_type, vec_into_raw_parts, once_cell))]
23
#![warn(rust_2018_idioms)]
34
#![warn(unused_lifetimes)]
45
#![warn(unreachable_pub)]

0 commit comments

Comments
 (0)