diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-01-08 17:26:06 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-01-08 17:26:06 +0100 |
commit | 5f31da82bdbebe34ae1b721a60df07e4e069b1f0 (patch) | |
tree | e44c3c6d2925abf38d41c3e9050ed54ce357dd64 /components/script/lib.rs | |
parent | df6a7959df69bf98b397f088fc3cf1fad2cc0aaf (diff) | |
download | servo-5f31da82bdbebe34ae1b721a60df07e4e069b1f0.tar.gz servo-5f31da82bdbebe34ae1b721a60df07e4e069b1f0.zip |
Remove if_let feature gates.
This feature is now supported unconditionally.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index e83b120b4eb..7cd7ab6bb52 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -2,7 +2,7 @@ * 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(default_type_params, globs, macro_rules, phase, unsafe_destructor, if_let)] +#![feature(default_type_params, globs, macro_rules, phase, unsafe_destructor)] #![deny(unused_imports)] #![deny(unused_variables)] |