From 082866aba68c27b1e77a7b0fa710c6d49d8cd3f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 2 Jan 2017 01:09:52 +0100 Subject: [PATCH] style: Export fnv's FnvHashMap, instead of rewriting it. --- components/style/stylist.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/stylist.rs b/components/style/stylist.rs index 9faf56395ca..5bfcba258fe 100644 --- a/components/style/stylist.rs +++ b/components/style/stylist.rs @@ -36,7 +36,7 @@ use style_traits::viewport::ViewportConstraints; use stylesheets::{CssRule, Origin, StyleRule, Stylesheet, UserAgentStylesheets}; use viewport::{self, MaybeNew, ViewportRule}; -pub type FnvHashMap = HashMap>; +pub use ::fnv::FnvHashMap; /// This structure holds all the selectors and device characteristics /// for a given document. The selectors are converted into `Rule`s