aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-02-04 18:11:52 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2016-02-04 18:11:52 +0530
commit647637193d12eb4869afa93106d3aa14721a0935 (patch)
treeef902a5b40df973b10666bf63b69db14d13d65de
parent712b053f4f597a097767a0812013b95c7db8b3c9 (diff)
parenta9472ede64d44e1d9138ca9af6c8042a9e7a30c2 (diff)
downloadservo-647637193d12eb4869afa93106d3aa14721a0935.tar.gz
servo-647637193d12eb4869afa93106d3aa14721a0935.zip
Auto merge of #9512 - timvandermeij:feature-cleanup, r=frewsxcv
Remove old features 'clone_from_slice' and 'convert' Fixes #9495. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9512) <!-- Reviewable:end -->
-rw-r--r--components/canvas/lib.rs1
-rw-r--r--components/compositing/lib.rs1
-rw-r--r--components/gfx/lib.rs1
3 files changed, 0 insertions, 3 deletions
diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs
index 5a0b1a9e596..7377e0385c7 100644
--- a/components/canvas/lib.rs
+++ b/components/canvas/lib.rs
@@ -2,7 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-#![feature(clone_from_slice)]
#![feature(nonzero)]
#![feature(plugin)]
#![plugin(plugins)]
diff --git a/components/compositing/lib.rs b/components/compositing/lib.rs
index bf192bd044a..6434c3a8939 100644
--- a/components/compositing/lib.rs
+++ b/components/compositing/lib.rs
@@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(box_syntax)]
-#![feature(clone_from_slice)]
#![feature(custom_derive)]
#![feature(plugin)]
#![feature(mpsc_select)]
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs
index 871e210f541..c088e7e9b97 100644
--- a/components/gfx/lib.rs
+++ b/components/gfx/lib.rs
@@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// For simd (currently x86_64/aarch64)
-#![cfg_attr(any(target_arch = "x86_64", target_arch = "aarch64"), feature(convert))]
#![cfg_attr(any(target_os = "linux", target_os = "android", target_os = "windows"), feature(heap_api))]
#![feature(alloc)]