aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/css/matching.rs
diff options
context:
space:
mode:
authorBobby Holley <bobbyholley@gmail.com>2015-11-17 14:20:47 -0800
committerBobby Holley <bobbyholley@gmail.com>2015-11-18 17:23:29 -0800
commit54f2700ba6028df6c49c005be6a63add34292484 (patch)
tree58ec8a02839cf75012aa5bdbd938efb857a7b17a /components/layout/css/matching.rs
parentacbe41305230a926458596444ca955eff063d9dd (diff)
downloadservo-54f2700ba6028df6c49c005be6a63add34292484.tar.gz
servo-54f2700ba6028df6c49c005be6a63add34292484.zip
Hoist exported wrapper functionality into a family of traits.
All the existing code still uses the concrete implementations, so this shouldn't impact the generated code at all.
Diffstat (limited to 'components/layout/css/matching.rs')
-rw-r--r--components/layout/css/matching.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/css/matching.rs b/components/layout/css/matching.rs
index 4afd9a77815..c088452021d 100644
--- a/components/layout/css/matching.rs
+++ b/components/layout/css/matching.rs
@@ -31,7 +31,7 @@ use util::arc_ptr_eq;
use util::cache::{LRUCache, SimpleHashCache};
use util::opts;
use util::vec::ForgetfulSink;
-use wrapper::{LayoutElement, LayoutNode};
+use wrapper::{LayoutElement, LayoutElementTrait, LayoutNode, LayoutNodeTrait};
pub struct ApplicableDeclarations {
pub normal: SmallVec<[DeclarationBlock; 16]>,