Auto merge of #5860 - GlassAndOneHalf:remove-jstraceable, r=jdm

This PR solves Issue #5849.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/5860)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-04-26 19:00:06 -05:00
commit ea00e949a4

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>
}