mirror of
https://github.com/servo/servo.git
synced 2025-08-02 12:10:29 +01:00
Use a u32 in calculate_split_position_using_breaking_strategy.
This commit is contained in:
parent
d418c0da3a
commit
7b45a4384d
1 changed files with 1 additions and 1 deletions
|
@ -1503,7 +1503,7 @@ impl Fragment {
|
|||
return None
|
||||
};
|
||||
|
||||
let mut pieces_processed_count: uint = 0;
|
||||
let mut pieces_processed_count: u32 = 0;
|
||||
let mut remaining_inline_size = max_inline_size;
|
||||
let mut inline_start_range = Range::new(text_fragment_info.range.begin(), CharIndex(0));
|
||||
let mut inline_end_range = None;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue