about summary refs log tree commit diff
path: root/src/libsync
diff options
context:
space:
mode:
authorColin Sherratt <colin.sherratt@gmail.com>2014-02-07 21:47:23 -0500
committerColin Sherratt <colin.sherratt@gmail.com>2014-02-07 21:47:23 -0500
commit0640fc3a8c6d5a0013663e78fda187ea774ae2e9 (patch)
tree945b8b3a0641fe9199a615e9e87f6a84f82bac04 /src/libsync
parent29e500db8a98a86b3de56688cd9fa6571a840470 (diff)
downloadrust-0640fc3a8c6d5a0013663e78fda187ea774ae2e9.tar.gz
rust-0640fc3a8c6d5a0013663e78fda187ea774ae2e9.zip
Added missing export of CowArc
Diffstat (limited to 'src/libsync')
-rw-r--r--src/libsync/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs
index de1b0f91d6d..d96685c7f55 100644
--- a/src/libsync/lib.rs
+++ b/src/libsync/lib.rs
@@ -17,7 +17,7 @@
 #[crate_type = "dylib"];
 #[license = "MIT/ASL2"];
 
-pub use arc::{Arc, MutexArc, RWArc, RWWriteMode, RWReadMode, Condvar};
+pub use arc::{Arc, MutexArc, RWArc, RWWriteMode, RWReadMode, Condvar, CowArc};
 pub use sync::{Mutex, RWLock, Condvar, Semaphore, RWLockWriteMode,
     RWLockReadMode, Barrier, one, mutex};
 pub use comm::{DuplexStream, SyncChan, SyncPort, rendezvous};