mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Untry
This commit is contained in:
parent
7af5a7fd54
commit
316cd35767
34 changed files with 261 additions and 264 deletions
|
@ -78,9 +78,9 @@ impl FloatList {
|
|||
|
||||
impl fmt::Debug for FloatList {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
try!(write!(f, "max_block_start={:?} floats={}", self.max_block_start, self.floats.len()));
|
||||
write!(f, "max_block_start={:?} floats={}", self.max_block_start, self.floats.len())?;
|
||||
for float in self.floats.iter() {
|
||||
try!(write!(f, " {:?}", float));
|
||||
write!(f, " {:?}", float)?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue