Skip to content

Commit 52366a6

Browse files
committed
---
yaml --- r: 224230 b: refs/heads/beta c: c2fca7c h: refs/heads/master v: v3
1 parent cc034a1 commit 52366a6

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 0eb552a835500ed964836a8e0e3111843bff8aa1
26+
refs/heads/beta: c2fca7c95742cdd25198eae42d233d49db7026ea
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: 938f5d7af401e2d8238522fed4a612943b6e77fd
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/libcore/char.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ pub fn from_u32(i: u32) -> Option<char> {
9191
/// Converts a `u32` to an `char`, not checking whether it is a valid unicode
9292
/// codepoint.
9393
#[inline]
94+
#[unstable(feature = "char_from_unchecked", reason = "recently added API")]
9495
pub unsafe fn from_u32_unchecked(i: u32) -> char {
9596
transmute(i)
9697
}

branches/beta/src/libstd/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@
209209
#![feature(borrow_state)]
210210
#![feature(box_raw)]
211211
#![feature(box_syntax)]
212+
#![feature(char_from_unchecked)]
212213
#![feature(char_internals)]
213214
#![feature(clone_from_slice)]
214215
#![feature(collections)]

0 commit comments

Comments
 (0)