aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2019-01-04 15:01:14 +0100
committerSimon Sapin <simon.sapin@exyr.org>2019-01-04 15:27:12 +0100
commit5f422b6161502173196ea89ff55ce549b10fec7a (patch)
treebf0848f3d7617a6e5065f7eb986f1378f78f95ed /components
parentc4a6dcfe4bd5f5613cee3596e68a1eb7a97bd32e (diff)
downloadservo-5f422b6161502173196ea89ff55ce549b10fec7a.tar.gz
servo-5f422b6161502173196ea89ff55ce549b10fec7a.zip
Upgrade to rustc 1.33.0-nightly (c0bbc3927 2019-01-03)
CC https://github.com/rust-lang/rust/issues/56105#issuecomment-451457706
Diffstat (limited to 'components')
-rw-r--r--components/script/dom/bindings/trace.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs
index ee8e93e03ac..9a38807e510 100644
--- a/components/script/dom/bindings/trace.rs
+++ b/components/script/dom/bindings/trace.rs
@@ -503,13 +503,6 @@ unsafe impl<A, B> JSTraceable for fn(A) -> B {
}
}
-unsafe impl<'a, A, B> JSTraceable for fn(&A) -> B {
- #[inline]
- unsafe fn trace(&self, _: *mut JSTracer) {
- // Do nothing
- }
-}
-
unsafe impl<T> JSTraceable for IpcSender<T>
where
T: for<'de> Deserialize<'de> + Serialize,