Remove forgotten reexport of ReentrantMutex in sys::unsupported.

This commit is contained in:
Mara Bos 2022-04-18 13:10:36 +02:00
parent 4212de63ab
commit 94f00e396a

View file

@ -2,5 +2,5 @@ mod condvar;
mod mutex;
mod rwlock;
pub use condvar::{Condvar, MovableCondvar};
pub use mutex::{MovableMutex, Mutex, ReentrantMutex};
pub use mutex::{MovableMutex, Mutex};
pub use rwlock::{MovableRwLock, RwLock};