diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-05-24 18:27:26 -0500 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-05-24 18:27:26 -0500 |
commit | 542519ebfd073662bc9421ac5fa0aa01ebc0d6fe (patch) | |
tree | 4f6814d089be78af598f1d9f536c18a6a61f8e54 /components/layout/traversal.rs | |
parent | 16f19b628fa630aab8cfd275a90128da7b59723b (diff) | |
parent | 5793add4cdc9e96930160dfc90025f43607f9f5d (diff) | |
download | servo-542519ebfd073662bc9421ac5fa0aa01ebc0d6fe.tar.gz servo-542519ebfd073662bc9421ac5fa0aa01ebc0d6fe.zip |
Auto merge of #6174 - frewsxcv:cleanup-long-lines, r=SimonSapin
Part of https://github.com/servo/servo/issues/6041
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6174)
<!-- Reviewable:end -->
Diffstat (limited to 'components/layout/traversal.rs')
-rw-r--r-- | components/layout/traversal.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/traversal.rs b/components/layout/traversal.rs index 6106456876b..5ec9f490ada 100644 --- a/components/layout/traversal.rs +++ b/components/layout/traversal.rs @@ -50,7 +50,8 @@ type Generation = u32; /// Since a work-stealing queue is used for styling, sometimes, the bloom filter /// will no longer be the for the parent of the node we're currently on. When /// this happens, the task local bloom filter will be thrown away and rebuilt. -thread_local!(static STYLE_BLOOM: RefCell<Option<(Box<BloomFilter>, UnsafeLayoutNode, Generation)>> = RefCell::new(None)); +thread_local!( + static STYLE_BLOOM: RefCell<Option<(Box<BloomFilter>, UnsafeLayoutNode, Generation)>> = RefCell::new(None)); /// Returns the task local bloom filter. /// |