aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/construct.rs
diff options
context:
space:
mode:
authorGlenn Watson <gw@intuitionlibrary.com>2014-09-12 15:07:56 +1000
committerGlenn Watson <gw@intuitionlibrary.com>2014-09-13 14:51:07 +1000
commit0e60c878f6ffc11d2ec564d19a8fce8a24d214f2 (patch)
tree88e097cf6ad3199a4a2a29f85eb600e6fa00eb89 /components/layout/construct.rs
parent6a9001b4fdf471b785f1e8456b1229d3b5590cab (diff)
downloadservo-0e60c878f6ffc11d2ec564d19a8fce8a24d214f2.tar.gz
servo-0e60c878f6ffc11d2ec564d19a8fce8a24d214f2.zip
Address review comments
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r--components/layout/construct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs
index 14bc61c4148..466a254237d 100644
--- a/components/layout/construct.rs
+++ b/components/layout/construct.rs
@@ -740,7 +740,7 @@ impl<'a, 'b> FlowConstructor<'a, 'b> {
float::none => {
FlowConstructionResult(wrapper_flow, abs_descendants)
}
- float_kind => {
+ _ => {
let float_kind = FloatKind::from_property(float_value);
let float_flow = box BlockFlow::float_from_node(self, node, float_kind) as Box<Flow>;
let mut float_flow = FlowRef::new(float_flow);