diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2017-05-01 14:17:37 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2017-05-01 14:19:00 -0700 |
commit | 10478b4fa3334635827aefd0cb8baa4b921d44f0 (patch) | |
tree | e1c503def64166f728029bb08d37701433e0e176 /components/script_plugins/lib.rs | |
parent | e92a79619e750c3c603cf420e6e7a234876d70a5 (diff) | |
download | servo-10478b4fa3334635827aefd0cb8baa4b921d44f0.tar.gz servo-10478b4fa3334635827aefd0cb8baa4b921d44f0.zip |
Stop using unstable slice_patterns feature
Diffstat (limited to 'components/script_plugins/lib.rs')
-rw-r--r-- | components/script_plugins/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script_plugins/lib.rs b/components/script_plugins/lib.rs index 3c0f67fa6ab..b35acdf3109 100644 --- a/components/script_plugins/lib.rs +++ b/components/script_plugins/lib.rs @@ -15,7 +15,7 @@ #![deny(unsafe_code)] -#![feature(box_syntax, plugin, plugin_registrar, rustc_private, slice_patterns)] +#![feature(box_syntax, plugin, plugin_registrar, rustc_private)] #[macro_use] extern crate rustc; |