From be876b2124db3b11973a6fb01967cd898b533b05 Mon Sep 17 00:00:00 2001 From: Jacob Taylor-Hindle Date: Mon, 27 Apr 2015 00:17:00 +0100 Subject: [PATCH] Remove #[jstraceable] annotation for the RootedVec type [Issue #5849] --- components/script/dom/bindings/trace.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs index d3de04ca57b..05ee1f09a0a 100644 --- a/components/script/dom/bindings/trace.rs +++ b/components/script/dom/bindings/trace.rs @@ -401,7 +401,6 @@ impl VecRootableType for *mut JSObject { /// A vector of items that are rooted for the lifetime /// of this struct #[allow(unrooted_must_root)] -#[jstraceable] pub struct RootedVec { v: Vec }