-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #42780 - frewsxcv:rollup, r=frewsxcv
Rollup of 6 pull requests - Successful merges: #42271, #42717, #42728, #42749, #42756, #42772 - Failed merges:
- Loading branch information
Showing
13 changed files
with
278 additions
and
18 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
src/doc/unstable-book/src/library-features/char-error-internals.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# `char_error_internals` | ||
|
||
This feature is internal to the Rust compiler and is not intended for general use. | ||
|
||
------------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule liblibc
updated
28 files
+4 −0 | .travis.yml | |
+21 −21 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+52 −0 | ci/android-sysimage.sh | |
+14 −20 | ci/docker/x86_64-linux-android/Dockerfile | |
+4 −1 | ci/run.sh | |
+46 −4 | libc-test/build.rs | |
+3 −0 | src/dox.rs | |
+33 −1 | src/unix/bsd/apple/mod.rs | |
+4 −0 | src/unix/bsd/freebsdlike/mod.rs | |
+2 −0 | src/unix/bsd/mod.rs | |
+11 −0 | src/unix/bsd/netbsdlike/netbsd/mod.rs | |
+1 −0 | src/unix/bsd/netbsdlike/openbsdlike/mod.rs | |
+1 −0 | src/unix/haiku/mod.rs | |
+32 −6 | src/unix/mod.rs | |
+1 −0 | src/unix/notbsd/android/mod.rs | |
+0 −53 | src/unix/notbsd/linux/mips/mips32.rs | |
+9 −14 | src/unix/notbsd/linux/mips/mips64.rs | |
+67 −0 | src/unix/notbsd/linux/mips/mod.rs | |
+30 −0 | src/unix/notbsd/linux/mod.rs | |
+65 −0 | src/unix/notbsd/linux/other/b32/x86.rs | |
+65 −0 | src/unix/notbsd/linux/other/b64/x86_64.rs | |
+28 −0 | src/unix/notbsd/mod.rs | |
+269 −0 | src/unix/uclibc/mips/mips32.rs | |
+209 −0 | src/unix/uclibc/mips/mips64.rs | |
+476 −0 | src/unix/uclibc/mips/mod.rs | |
+1,769 −0 | src/unix/uclibc/mod.rs | |
+312 −0 | src/unix/uclibc/x86_64/mod.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.