Skip to content

Commit

Permalink
Remove unnecessary rustc_const_stable attributes.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ou-se committed Oct 8, 2020
1 parent ccea570 commit e55d27f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion library/std/src/sys/unsupported/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ unsafe impl Send for Mutex {}
unsafe impl Sync for Mutex {} // no threads on this platform

impl Mutex {
#[rustc_const_stable(feature = "const_sys_mutex_new", since = "1.0.0")]
pub const fn new() -> Mutex {
Mutex { locked: UnsafeCell::new(false) }
}
Expand Down
1 change: 0 additions & 1 deletion library/std/src/sys_common/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ impl StaticMutex {
/// first used with any of the functions below.
/// Also, the behavior is undefined if this mutex is ever used reentrantly,
/// i.e., `lock` is called by the thread currently holding the lock.
#[rustc_const_stable(feature = "const_sys_mutex_new", since = "1.0.0")]
pub const fn new() -> Self {
Self(imp::Mutex::new())
}
Expand Down

0 comments on commit e55d27f

Please sign in to comment.