diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2014-05-03 21:20:44 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-05-03 21:20:44 +0530 |
commit | e656f1efff5d9242ad71c1d5a33a63694eadacb7 (patch) | |
tree | c13ce683e080ef31c045f41cff541985f5cecb5a | |
parent | 812d70942f74c793afabb8ff4fc120e92d586aaf (diff) | |
download | servo-e656f1efff5d9242ad71c1d5a33a63694eadacb7.tar.gz servo-e656f1efff5d9242ad71c1d5a33a63694eadacb7.zip |
Fix some private type export warnings
-rw-r--r-- | src/components/util/workqueue.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/util/workqueue.rs b/src/components/util/workqueue.rs index ec7022d546b..409092bc171 100644 --- a/src/components/util/workqueue.rs +++ b/src/components/util/workqueue.rs @@ -189,9 +189,9 @@ impl<'a,QUD,WUD:Send> WorkerProxy<'a,QUD,WUD> { /// A work queue on which units of work can be submitted. pub struct WorkQueue<QUD,WUD> { /// Information about each of the workers. - pub workers: ~[WorkerInfo<QUD,WUD>], + workers: ~[WorkerInfo<QUD,WUD>], /// A port on which deques can be received from the workers. - pub port: Receiver<SupervisorMsg<QUD,WUD>>, + port: Receiver<SupervisorMsg<QUD,WUD>>, /// The amount of work that has been enqueued. pub work_count: uint, /// Arbitrary user data. |