Skip to content

Commit aec81b3

Browse files
committed
Remove unnecessary let_chain feature gate
because `let_chain` feature was stabilized on April and is available without the feature gate in Rust 2024 now. rust-lang/rust#132833
1 parent 1b77df6 commit aec81b3

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/bin/edit/main.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

4-
#![feature(
5-
allocator_api,
6-
let_chains,
7-
linked_list_cursors,
8-
os_string_truncate,
9-
string_from_utf8_lossy_owned
10-
)]
4+
#![feature(allocator_api, linked_list_cursors, os_string_truncate, string_from_utf8_lossy_owned)]
115

126
mod documents;
137
mod draw_editor;

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
allocator_api,
66
breakpoint,
77
cold_path,
8-
let_chains,
98
linked_list_cursors,
109
maybe_uninit_fill,
1110
maybe_uninit_slice,

0 commit comments

Comments
 (0)