diff options
| author | Trevor Gross <t.gross35@gmail.com> | 2025-08-29 19:33:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-29 19:33:03 -0500 |
| commit | 751a9ad2e2470cb877307d9fa5c6e43bbc428cf5 (patch) | |
| tree | 58feed63b2d9ca470079d3257689535555b45677 /compiler/rustc_middle/src/lib.rs | |
| parent | ed9e767c01ad257e4e86e40415aacf4019b64f7d (diff) | |
| parent | e42c1b12961385d6a5e9e442344fcaef8678ab58 (diff) | |
| download | rust-751a9ad2e2470cb877307d9fa5c6e43bbc428cf5.tar.gz rust-751a9ad2e2470cb877307d9fa5c6e43bbc428cf5.zip | |
Rollup merge of #145756 - okaneco:stabilize_char_boundary, r=scottmcm
str: Stabilize `round_char_boundary` feature Closes https://github.com/rust-lang/rust/issues/93743 FCP completed https://github.com/rust-lang/rust/issues/93743#issuecomment-3168382171
Diffstat (limited to 'compiler/rustc_middle/src/lib.rs')
| -rw-r--r-- | compiler/rustc_middle/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/lib.rs b/compiler/rustc_middle/src/lib.rs index cf0549fa668..5023b2740ef 100644 --- a/compiler/rustc_middle/src/lib.rs +++ b/compiler/rustc_middle/src/lib.rs @@ -29,6 +29,7 @@ #![allow(rustc::diagnostic_outside_of_impl)] #![allow(rustc::direct_use_of_rustc_type_ir)] #![allow(rustc::untranslatable_diagnostic)] +#![cfg_attr(bootstrap, feature(round_char_boundary))] #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] #![doc(rust_logo)] #![feature(allocator_api)] @@ -51,7 +52,6 @@ #![feature(negative_impls)] #![feature(never_type)] #![feature(ptr_alignment_type)] -#![feature(round_char_boundary)] #![feature(rustc_attrs)] #![feature(rustdoc_internals)] #![feature(sized_hierarchy)] |
