mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Remove int_uint feature from gfx.
This commit is contained in:
parent
a277036dd9
commit
a68fa74f4b
13 changed files with 103 additions and 97 deletions
|
@ -47,8 +47,8 @@ impl FontTable {
|
|||
}
|
||||
|
||||
impl FontTableMethods for FontTable {
|
||||
fn with_buffer<F>(&self, blk: F) where F: FnOnce(*const u8, uint) {
|
||||
blk(self.data.bytes().as_ptr(), self.data.len() as uint);
|
||||
fn with_buffer<F>(&self, blk: F) where F: FnOnce(*const u8, usize) {
|
||||
blk(self.data.bytes().as_ptr(), self.data.len() as usize);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue