Auto merge of #14569 - servo:ROOTED_TRACEABLES-Rc, r=emilio

Remove the Rc from ROOTED_TRACEABLES.

<!-- 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/14569)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-12-13 23:32:29 -08:00 committed by GitHub
commit 030cf90c57

View file

@ -574,8 +574,8 @@ pub struct RootedTraceableSet {
thread_local!( thread_local!(
/// TLV Holds a set of JSTraceables that need to be rooted /// TLV Holds a set of JSTraceables that need to be rooted
static ROOTED_TRACEABLES: Rc<RefCell<RootedTraceableSet>> = static ROOTED_TRACEABLES: RefCell<RootedTraceableSet> =
Rc::new(RefCell::new(RootedTraceableSet::new())); RefCell::new(RootedTraceableSet::new());
); );
impl RootedTraceableSet { impl RootedTraceableSet {