Remove #[jstraceable] annotation for the RootedVec type [Issue #5849]

This commit is contained in:
Jacob Taylor-Hindle 2015-04-27 00:17:00 +01:00
parent 1389be3782
commit be876b2124

View file

@ -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<T> {
v: Vec<T>
}