From e656f1efff5d9242ad71c1d5a33a63694eadacb7 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sat, 3 May 2014 21:20:44 +0530 Subject: [PATCH] Fix some private type export warnings --- src/components/util/workqueue.rs | 4 ++-- 1 file 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 { /// Information about each of the workers. - pub workers: ~[WorkerInfo], + workers: ~[WorkerInfo], /// A port on which deques can be received from the workers. - pub port: Receiver>, + port: Receiver>, /// The amount of work that has been enqueued. pub work_count: uint, /// Arbitrary user data.