mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Stop using int/uint in compositing.
This commit is contained in:
parent
6b127a8df8
commit
8e0ce3d14f
2 changed files with 1 additions and 2 deletions
|
@ -49,7 +49,7 @@ pub struct CompositorData {
|
|||
impl CompositorData {
|
||||
pub fn new_layer(layer_properties: LayerProperties,
|
||||
wants_scroll_events: WantsScrollEventsFlag,
|
||||
tile_size: uint)
|
||||
tile_size: usize)
|
||||
-> Rc<Layer<CompositorData>> {
|
||||
let new_compositor_data = CompositorData {
|
||||
pipeline_id: layer_properties.pipeline_id,
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
|
||||
#![feature(box_syntax)]
|
||||
#![feature(core)]
|
||||
#![feature(int_uint)]
|
||||
#![feature(io)]
|
||||
#![feature(old_io)]
|
||||
#![feature(rustc_private)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue