mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Remove uint/int inside components/util
(partial #4745).
This leaves range.rs alone.
This commit is contained in:
parent
55f7636549
commit
aaf7a7e439
11 changed files with 69 additions and 69 deletions
|
@ -25,7 +25,7 @@ pub struct TaskPool {
|
|||
}
|
||||
|
||||
impl TaskPool {
|
||||
pub fn new(tasks: uint) -> TaskPool {
|
||||
pub fn new(tasks: u32) -> TaskPool {
|
||||
assert!(tasks > 0);
|
||||
let (tx, rx) = channel();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue