Auto merge of #18334 - Manishearth:hashglobe, r=emilio,Gankro

Add fallible hashmaps from HashGlobe for stylo

HashGlobe code is r=emilio,Gankro

integration code is r=emilio from https://bugzilla.mozilla.org/show_bug.cgi?id=1393656

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18334)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-09-01 16:09:53 -05:00 committed by GitHub
commit ac7cf53692
24 changed files with 6801 additions and 14 deletions

View file

@ -1007,7 +1007,7 @@ impl StrongRuleNode {
unsafe fn assert_free_list_has_no_duplicates_or_null(&self) {
assert!(cfg!(debug_assertions), "This is an expensive check!");
use std::collections::HashSet;
use hash::HashSet;
let me = &*self.ptr();
assert!(me.is_root());