change #![feature(const_fn)] to specific gates

This commit is contained in:
Alex Burka
2017-09-08 18:26:54 +00:00
parent a12d0d4f66
commit 681e5da61e
49 changed files with 127 additions and 75 deletions

View File

@@ -156,6 +156,7 @@ struct Finish {
impl Once {
/// Creates a new `Once` value.
#[stable(feature = "once_new", since = "1.2.0")]
#[cfg_attr(not(stage0), rustc_const_unstable(feature = "const_once_new"))]
pub const fn new() -> Once {
Once {
state: AtomicUsize::new(INCOMPLETE),