Skip to content

Commit 2e74291

Browse files
author
Pedro Larroy
committed
remove explicit if_let and tuple_indexing feature enables as they now trigger warnings
1 parent 126db54 commit 2e74291

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libcollections/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#![allow(unknown_features)]
2525
#![feature(macro_rules, default_type_params, phase, globs)]
2626
#![feature(unsafe_destructor, import_shadowing, slicing_syntax)]
27-
#![feature(tuple_indexing, unboxed_closures)]
27+
#![feature(unboxed_closures)]
2828
#![no_std]
2929

3030
#[phase(plugin, link)] extern crate core;

src/librustc_borrowck/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
1717
html_root_url = "http://doc.rust-lang.org/nightly/")]
1818

19-
#![feature(default_type_params, globs, if_let, import_shadowing, macro_rules, phase, quote)]
20-
#![feature(slicing_syntax, tuple_indexing, unsafe_destructor)]
19+
#![feature(default_type_params, globs, import_shadowing, macro_rules, phase, quote)]
20+
#![feature(slicing_syntax, unsafe_destructor)]
2121
#![feature(rustc_diagnostic_macros)]
2222
#![feature(unboxed_closures)]
2323
#![allow(non_camel_case_types)]

0 commit comments

Comments
 (0)