From eccf0a2932becabb0c9bdb795a080e53ad62e0ac Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 20 Jan 2017 16:09:35 +0100 Subject: [PATCH] Privatize RootedTraceableSet. --- components/script/dom/bindings/trace.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs index f796c87fb4b..e8992337c84 100644 --- a/components/script/dom/bindings/trace.rs +++ b/components/script/dom/bindings/trace.rs @@ -581,7 +581,7 @@ unsafe impl JSTraceable for RwLock { } /// Holds a set of JSTraceables that need to be rooted -pub struct RootedTraceableSet { +struct RootedTraceableSet { set: Vec<*const JSTraceable>, }