]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/sys/sgx/rwlock.rs
Remove unnecessary feature gates from const fns
[rust.git] / src / libstd / sys / sgx / rwlock.rs
index 7b6970b825f93cc71b056e3700acfe886fade64a..a1551dbb53b2ddb4de0eb5dd5438609811ea9ef4 100644 (file)
@@ -21,7 +21,6 @@ pub struct RWLock {
 //unsafe impl Sync for RWLock {} // FIXME
 
 impl RWLock {
-    #[unstable(feature = "sgx_internals", issue = "0")] // FIXME: min_const_fn
     pub const fn new() -> RWLock {
         RWLock {
             readers: SpinMutex::new(WaitVariable::new(None)),