Auto merge of #15127 - servo:RootedTraceableSet, r=jdm

Privatize RootedTraceableSet.

<!-- 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/15127)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-01-20 10:17:38 -08:00 committed by GitHub
commit 5cd0425933

View file

@ -581,7 +581,7 @@ unsafe impl JSTraceable for RwLock<MediaList> {
}
/// Holds a set of JSTraceables that need to be rooted
pub struct RootedTraceableSet {
struct RootedTraceableSet {
set: Vec<*const JSTraceable>,
}