From d521cd006ef3e7120c81d8a96efd42e55aed5abd Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Sat, 28 Mar 2015 22:42:14 +0100 Subject: [PATCH] Remove the unused FloatedBlockInfo::index field. --- components/layout/block.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/layout/block.rs b/components/layout/block.rs index abaa80a06ab..36cdc1ab988 100644 --- a/components/layout/block.rs +++ b/components/layout/block.rs @@ -72,9 +72,6 @@ pub struct FloatedBlockInfo { /// box). pub float_ceiling: Au, - /// Index into the fragment list for inline floats - pub index: Option, - /// Left or right? pub float_kind: FloatKind, } @@ -84,7 +81,6 @@ impl FloatedBlockInfo { FloatedBlockInfo { containing_inline_size: Au(0), float_ceiling: Au(0), - index: None, float_kind: float_kind, } }