diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2015-11-17 14:20:47 -0800 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2015-11-18 17:23:29 -0800 |
commit | 54f2700ba6028df6c49c005be6a63add34292484 (patch) | |
tree | 58ec8a02839cf75012aa5bdbd938efb857a7b17a /components/layout/css/matching.rs | |
parent | acbe41305230a926458596444ca955eff063d9dd (diff) | |
download | servo-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.rs | 2 |
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]>, |