diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2017-09-20 15:27:00 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2017-09-21 09:40:46 -0700 |
commit | 2f030966bfc49802d2eba5fcea4464af0be27d0b (patch) | |
tree | 016366ea2e43f723f5648b3c44892065cd7be9f6 | |
parent | 2795e5fa9c30a5d40efb90a9064bbce9fcc9302e (diff) | |
download | servo-2f030966bfc49802d2eba5fcea4464af0be27d0b.tar.gz servo-2f030966bfc49802d2eba5fcea4464af0be27d0b.zip |
Split feature gates into lines for easy grepping
-rw-r--r-- | components/script_plugins/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/script_plugins/lib.rs b/components/script_plugins/lib.rs index b35acdf3109..7548ccd92d2 100644 --- a/components/script_plugins/lib.rs +++ b/components/script_plugins/lib.rs @@ -15,7 +15,10 @@ #![deny(unsafe_code)] -#![feature(box_syntax, plugin, plugin_registrar, rustc_private)] +#![feature(box_syntax)] +#![feature(plugin)] +#![feature(plugin_registrar)] +#![feature(rustc_private)] #[macro_use] extern crate rustc; |