Skip to content

Commit

Permalink
Fix some private type export warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed May 3, 2014
1 parent 812d709 commit e656f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/util/workqueue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

5 comments on commit e656f1e

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from jdm
at Manishearth@e656f1e

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging Manishearth/servo/privtype = e656f1e into auto

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Manishearth/servo/privtype = e656f1e merged ok, testing candidate = 56fe29d

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 56fe29d

Please sign in to comment.