Skip to content

Commit 0af7f0f

Browse files
committed
Auto merge of rust-lang#130697 - bjoernager:const-char-make-ascii, r=dtolnay
Mark `char::make_ascii_uppercase` and `char::make_ascii_lowercase` as const. Relevant tracking issue: rust-lang#130698 The `make_ascii_uppercase` and `make_ascii_lowercase` methods in `char` should be marked "const." With the stabilisation of [`const_mut_refs`](rust-lang#57349), this simply requires adding the `const` specifier to the function signatures.
2 parents 4ae36d9 + be9b3b4 commit 0af7f0f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

library/core/src/char/methods.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1279,8 +1279,9 @@ impl char {
12791279
///
12801280
/// [`to_ascii_uppercase()`]: #method.to_ascii_uppercase
12811281
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
1282+
#[rustc_const_unstable(feature = "const_char_make_ascii", issue = "130698")]
12821283
#[inline]
1283-
pub fn make_ascii_uppercase(&mut self) {
1284+
pub const fn make_ascii_uppercase(&mut self) {
12841285
*self = self.to_ascii_uppercase();
12851286
}
12861287

@@ -1304,8 +1305,9 @@ impl char {
13041305
///
13051306
/// [`to_ascii_lowercase()`]: #method.to_ascii_lowercase
13061307
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
1308+
#[rustc_const_unstable(feature = "const_char_make_ascii", issue = "130698")]
13071309
#[inline]
1308-
pub fn make_ascii_lowercase(&mut self) {
1310+
pub const fn make_ascii_lowercase(&mut self) {
13091311
*self = self.to_ascii_lowercase();
13101312
}
13111313

0 commit comments

Comments
 (0)