Skip to content

Commit f4d4b7e

Browse files
committed
Update to nightly 2021-05-16
This removes the 'const_fn' feature.
1 parent 6f62e81 commit f4d4b7e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

libs/context/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#![feature(
22
negative_impls, // !Send is much cleaner than `PhantomData<Rc>`
33
untagged_unions, // I want to avoid ManuallyDrop in unions
4-
const_fn, // Apparently this feature is unstable???
54
const_fn_trait_bound, // So generics + const fn are unstable, huh?
65
)]
76
#![cfg_attr(not(feature = "std"), no_std)]

libs/simple/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
negative_impls, // impl !Send is much cleaner than PhantomData<Rc<()>>
66
exhaustive_patterns, // Allow exhaustive matching against never
77
const_alloc_layout, // Used for StaticType
8-
const_fn, // We statically create type info
98
const_panic, // Const panic should be stable
109
untagged_unions, // Why isn't this stable?
1110
new_uninit, // Until Rust has const generics, this is how we init arrays..

0 commit comments

Comments
 (0)